From 1ab93ba480cabae849c1c0a00e9650ad75d5f912 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 28 Sep 2022 12:22:33 +0200 Subject: score: INTERNAL_ERROR_IDLE_THREAD_CREATE_FAILED Add the INTERNAL_ERROR_IDLE_THREAD_CREATE_FAILED fatal error in case the creation of an idle thread fails. This may happen due to a failing create extension provided by the application. --- testsuites/validation/ts-fatal-sysinit.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'testsuites/validation/ts-fatal-sysinit.h') diff --git a/testsuites/validation/ts-fatal-sysinit.h b/testsuites/validation/ts-fatal-sysinit.h index 5744bc6fea..09d86d02ea 100644 --- a/testsuites/validation/ts-fatal-sysinit.h +++ b/testsuites/validation/ts-fatal-sysinit.h @@ -122,7 +122,14 @@ RTEMS_SYSINIT_ITEM( #define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM +#ifdef FATAL_SYSINIT_INITIAL_EXTENSION +#define OPTIONAL_FATAL_SYSINIT_INITIAL_EXTENSION FATAL_SYSINIT_INITIAL_EXTENSION, +#else +#define OPTIONAL_FATAL_SYSINIT_INITIAL_EXTENSION +#endif + #define CONFIGURE_INITIAL_EXTENSIONS \ + OPTIONAL_FATAL_SYSINIT_INITIAL_EXTENSION \ { .fatal = FatalInitialExtension }, \ { .fatal = TestSuiteFatalExtension } -- cgit v1.2.3