summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/test.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-06-08 10:04:55 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-23 09:27:47 +0200
commit6b27e3251eb6b3374751cdcec4015b4ee1026e0e (patch)
tree79bcdce7c596569ae3dd5c1b77ec343ece5b37b6 /cpukit/include/rtems/test.h
parentlibtest: Add T_make_runner() (diff)
downloadrtems-6b27e3251eb6b3374751cdcec4015b4ee1026e0e.tar.bz2
libtest: Support custom scope messages via fixture
Update #3199.
Diffstat (limited to 'cpukit/include/rtems/test.h')
-rw-r--r--cpukit/include/rtems/test.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpukit/include/rtems/test.h b/cpukit/include/rtems/test.h
index a1a976d7ff..2362e5b804 100644
--- a/cpukit/include/rtems/test.h
+++ b/cpukit/include/rtems/test.h
@@ -62,6 +62,7 @@ typedef struct T_fixture {
void (*setup)(void *);
void (*stop)(void *);
void (*teardown)(void *);
+ void (*scope)(void *, char *, size_t);
void *initial_context;
} T_fixture;