52 bool always_set_to_false,
59 #define RTEMS_TEST_INITIAL_EXTENSION \ 60 { NULL, NULL, NULL, NULL, NULL, NULL, NULL, rtems_test_fatal_extension } 67 RTEMS_TEST_STATE_PASS,
68 RTEMS_TEST_STATE_FAIL,
69 RTEMS_TEST_STATE_USER_INPUT,
70 RTEMS_TEST_STATE_INDETERMINATE,
71 RTEMS_TEST_STATE_BENCHMARK
74 #if (TEST_STATE_EXPECTED_FAIL && TEST_STATE_USER_INPUT) || \ 75 (TEST_STATE_EXPECTED_FAIL && TEST_STATE_INDETERMINATE) || \ 76 (TEST_STATE_EXPECTED_FAIL && TEST_STATE_BENCHMARK) || \ 77 (TEST_STATE_USER_INPUT && TEST_STATE_INDETERMINATE) || \ 78 (TEST_STATE_USER_INPUT && TEST_STATE_BENCHMARK) || \ 79 (TEST_STATE_INDETERMINATE && TEST_STATE_BENCHMARK) 80 #error Test states must be unique 83 #if TEST_STATE_EXPECTED_FAIL 84 #define TEST_STATE RTEMS_TEST_STATE_FAIL 85 #elif TEST_STATE_USER_INPUT 86 #define TEST_STATE RTEMS_TEST_STATE_USER_INPUT 87 #elif TEST_STATE_INDETERMINATE 88 #define TEST_STATE RTEMS_TEST_STATE_INDETERMINATE 89 #elif TEST_STATE_BENCHMARK 90 #define TEST_STATE RTEMS_TEST_STATE_BENCHMARK 92 #define TEST_STATE RTEMS_TEST_STATE_PASS 122 #define RTEMS_TEST_PARALLEL_PROCESSOR_MAX 32 133 rtems_id worker_ids[RTEMS_TEST_PARALLEL_PROCESSOR_MAX];
176 size_t active_workers
192 size_t active_workers,
210 size_t active_workers
236 static inline bool rtems_test_parallel_stop_job(
240 return _Atomic_Load_ulong(&ctx->stop, ATOMIC_ORDER_RELAXED) != 0;
253 static inline bool rtems_test_parallel_is_master_worker(
size_t worker_index)
255 return worker_index == 0;
266 static inline rtems_id rtems_test_parallel_get_task_id(
271 return ctx->worker_ids[worker_index];
Watchdog_Interval rtems_interval
Used to manage and manipulate intervals specified by clock ticks.
Definition: types.h:127
rtems_interval(* init)(rtems_test_parallel_context *ctx, void *arg, size_t active_workers)
Job initialization handler.
Definition: test.h:173
const char rtems_test_name[]
Each test must define a test name string.
SMP barrier control.
Definition: smpbarrier.h:51
void(* rtems_test_parallel_worker_setup)(rtems_test_parallel_context *ctx, size_t worker_index, rtems_id worker_id)
Worker task setup handler.
Definition: test.h:149
Basic parallel job description.
Definition: test.h:158
#define RTEMS_NO_RETURN
Definition: basedefs.h:102
RTEMS_TEST_STATE
Test states.
Definition: test.h:65
int rtems_test_begin(const char *name, const RTEMS_TEST_STATE state)
Prints a begin of test message using printf().
Definition: testbeginend.c:38
int rtems_test_printf(const char *format,...) RTEMS_PRINTFLIKE(1
Prints via the RTEMS printer.
#define RTEMS_PRINTFLIKE(_format_pos, _ap_pos)
Tells the compiler that this function expects printf()-like arguments.
Definition: basedefs.h:249
int rtems_test_end(const char *name)
Prints an end of test message using printf().
Definition: testbeginend.c:75
Internal_errors_Source
This type lists the possible sources from which an error can be reported.
Definition: interr.h:47
void rtems_test_exit(int status) RTEMS_NO_RETURN
Exit the test without calling exit() since it closes stdin, etc and pulls in stdio code.
Definition: testbeginend.c:83
Internal context for parallel job execution.
Definition: test.h:129
bool cascade
Job cascading flag.
Definition: test.h:225
void(* fini)(rtems_test_parallel_context *ctx, void *arg, size_t active_workers)
Job finalization handler.
Definition: test.h:207
uint_fast32_t rtems_test_get_one_tick_busy_count(void)
Returns a count value for rtems_test_busy() which yields roughly a duration of one clock tick.
Definition: testbusy.c:63
void rtems_test_busy(uint_fast32_t count)
Performs a busy loop with the specified iteration count.
Definition: testbusy.c:53
void * arg
Job specific argument.
Definition: test.h:216
Definition: inftrees.h:24
rtems_printer rtems_test_printer
Each test must define a printer.
Definition: testbeginend.c:25
void rtems_test_busy_cpu_usage(time_t seconds, long nanoseconds)
Performs a busy loop for the specified seconds and nanoseconds based on the CPU usage of the executin...
Definition: testbusy.c:110
void(* body)(rtems_test_parallel_context *ctx, void *arg, size_t active_workers, size_t worker_index)
Job body handler.
Definition: test.h:189
Objects_Id rtems_id
Used to manage and manipulate RTEMS object identifiers.
Definition: types.h:83
void rtems_test_parallel(rtems_test_parallel_context *ctx, rtems_test_parallel_worker_setup worker_setup, const rtems_test_parallel_job *jobs, size_t job_count)
Runs a bunch of jobs in parallel on all processors of the system.
Definition: testparallel.c:123
User print interface to the bspIO print plug in.
void rtems_test_fatal_extension(rtems_fatal_source source, bool always_set_to_false, rtems_fatal_code code)
Fatal extension for tests.
Definition: testextension.c:29