From b519e509a953c25894700531c321f7213fa11e70 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 27 Jan 2022 14:16:55 +0100 Subject: sptests: Avoid a dependency on errno Avoid a dependency on errno which might be a thread-local object. The tests sp01, spstkalloc02, and sptls03 assume that no thread-local storage object is present. Update #4560. --- testsuites/sptests/sp01/system.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'testsuites/sptests/sp01/system.h') diff --git a/testsuites/sptests/sp01/system.h b/testsuites/sptests/sp01/system.h index d7990aeca8..82354b801e 100644 --- a/testsuites/sptests/sp01/system.h +++ b/testsuites/sptests/sp01/system.h @@ -21,9 +21,14 @@ rtems_task Task_1_through_3( /* configuration information */ -#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER #define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER +/* + * Avoid a dependency on errno which might be a thread-local object. This test + * assumes that no thread-local storage object is present. + */ +#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM + #define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION #define CONFIGURE_RTEMS_INIT_TASKS_TABLE -- cgit v1.2.3