summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/test.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-08-13 09:59:19 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-08-18 07:08:51 +0200
commit5383d4db04bc8b8c97957edb54375de304e0458b (patch)
tree8e3c750e5b3d304caaa8f4c029d6e1256e42d65b /cpukit/include/rtems/test.h
parentlibtest: Add T_check_steps() (diff)
downloadrtems-5383d4db04bc8b8c97957edb54375de304e0458b.tar.bz2
libtest: Add fixture steps
Support a new test plan for each nested fixture. Update #3199.
Diffstat (limited to 'cpukit/include/rtems/test.h')
-rw-r--r--cpukit/include/rtems/test.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/include/rtems/test.h b/cpukit/include/rtems/test.h
index 212d4a5ae2..95e078ceff 100644
--- a/cpukit/include/rtems/test.h
+++ b/cpukit/include/rtems/test.h
@@ -71,6 +71,9 @@ typedef struct T_fixture_node {
struct T_fixture_node *previous;
const T_fixture *fixture;
void *context;
+ unsigned int next_planned_steps;
+ unsigned int next_steps;
+ unsigned int failures;
} T_fixture_node;
#define T_ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))