summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-16 16:21:00 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-16 16:21:00 +0000
commit4b960e5f298ba268bdcd7dd38f5792447a39708c (patch)
tree09703ca49f8347c79cf61a9aa63b6d49154784bb /testsuites
parentUse the miniIMFS to reduce code space. (diff)
downloadrtems-4b960e5f298ba268bdcd7dd38f5792447a39708c.tar.bz2
Added code to the macros which checked directive status to also
check that the _Thread_Dispatch_disable_level is set to the proper value (0 99% of the time). This automatic check significantly reduces the chance of mismatching disable/enable dispatch pairs while doing internal RTEMS work.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/support/include/tmacros.h64
1 files changed, 44 insertions, 20 deletions
diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h
index 3ea6a2c31f..ae5cc330ea 100644
--- a/testsuites/support/include/tmacros.h
+++ b/testsuites/support/include/tmacros.h
@@ -25,6 +25,7 @@ extern "C" {
#include <stdio.h>
#include <stdlib.h>
+#include <assert.h>
#define FOREVER 1 /* infinite loop */
@@ -35,35 +36,58 @@ extern "C" {
#define TEST_EXTERN extern
#endif
-#define directive_failed( dirstat, failmsg ) \
- fatal_directive_status( dirstat, RTEMS_SUCCESSFUL, failmsg )
-
-#define fatal_directive_status( stat, desired, msg ) \
- do { \
- if ( (stat) != (desired) ) { \
- printf( "\n%s FAILED -- expected (%d) got (%d)\n", \
- (msg), (desired), (stat) ); \
- fflush(stdout); \
- exit( stat ); \
- } \
- } while ( 0 )
-
-#define sprint_time(str,s1,tb,s2) \
+#define check_dispatch_disable_level( _expect ) \
+ do { \
+ extern volatile rtems_unsigned32 _Thread_Dispatch_disable_level; \
+ if ( _Thread_Dispatch_disable_level != (_expect) ) { \
+ printf( "\n_Thread_Dispatch_disable_level is (%d) not %d\n", \
+ _Thread_Dispatch_disable_level, (_expect) ); \
+ fflush(stdout); \
+ exit( 1 ); \
+ } \
+ } while ( 0 )
+
+#define directive_failed( _dirstat, _failmsg ) \
+ fatal_directive_status( _dirstat, RTEMS_SUCCESSFUL, _failmsg )
+
+#define directive_failed_with_level( _dirstat, _failmsg, _level ) \
+ fatal_directive_status_with_level( \
+ _dirstat, RTEMS_SUCCESSFUL, _failmsg, _level )
+
+#define fatal_directive_status( _stat, _desired, _msg ) \
+ fatal_directive_status_with_level( _stat, _desired, _msg, 0 )
+
+#define fatal_directive_status_with_level( _stat, _desired, _msg, _level ) \
+ do { \
+ check_dispatch_disable_level( _level ); \
+ if ( (_stat) != (_desired) ) { \
+ printf( "\n%s FAILED -- expected (%d) got (%d)\n", \
+ (_msg), (_desired), (_stat) ); \
+ fflush(stdout); \
+ exit( _stat ); \
+ } \
+ } while ( 0 )
+
+#define sprint_time(_str, _s1, _tb, _s2) \
do { \
sprintf( (str), "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
- s1, (tb)->hour, (tb)->minute, (tb)->second, \
- (tb)->month, (tb)->day, (tb)->year, s2 ); \
+ _s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
+ (_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
} while ( 0 )
-#define print_time(s1,tb,s2) \
+#define print_time(_s1, _tb, _s2) \
do { \
printf( "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
- s1, (tb)->hour, (tb)->minute, (tb)->second, \
- (tb)->month, (tb)->day, (tb)->year, s2 ); \
+ _s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
+ (_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
fflush(stdout); \
} while ( 0 )
-#define put_dot( c ) putchar( c ); fflush( stdout )
+#define put_dot( _c ) \
+ do { \
+ putchar( _c ); \
+ fflush( stdout ); \
+ } while ( 0 )
#define new_line puts( "" )