summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/test.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-21 21:15:39 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-24 07:38:41 +0100
commitaa1c6ddd5cf32ae9e7d4e0c3ef94ed57ad3c0384 (patch)
tree8d41dbd4e641572626d94eac0bc504fa44911901 /cpukit/include/rtems/test.h
parentspec/aarch64: Only apply SUBALIGN(4) to ILP32 (diff)
downloadrtems-aa1c6ddd5cf32ae9e7d4e0c3ef94ed57ad3c0384.tar.bz2
libtest: Fix undefined setjmp() behaviour
Bug was introduced by 78baeb757957fa0807c30e6c4d21ae99c9639e6a. Update #3199.
Diffstat (limited to 'cpukit/include/rtems/test.h')
-rw-r--r--cpukit/include/rtems/test.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/include/rtems/test.h b/cpukit/include/rtems/test.h
index 573f7b93c9..f96a5a6892 100644
--- a/cpukit/include/rtems/test.h
+++ b/cpukit/include/rtems/test.h
@@ -2270,6 +2270,7 @@ typedef enum {
T_EVENT_CASE_BEGIN,
T_EVENT_CASE_END,
T_EVENT_CASE_LATE,
+ T_EVENT_CASE_STOP,
T_EVENT_RUN_FINALIZE_EARLY,
T_EVENT_RUN_FINALIZE_LATE
} T_event;
@@ -2306,7 +2307,7 @@ void T_run_all(void);
void T_run_by_name(const char *);
-bool T_case_begin(const char *, const T_fixture *);
+void T_case_begin(const char *, const T_fixture *);
void T_case_end(void);