From f96cb0bc54cda3a16e25390fa6c7cbcc620f9da1 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 7 Nov 2001 23:08:40 +0000 Subject: 2001-11-07 Joel Sherrill Tracked as PR72 but related to the object id problem (PR36) reported by Todor.Todorov@barco.com. * include/tmacros.h: Added fatal_directive_check_status_only(). --- c/src/tests/support/include/tmacros.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'c/src/tests/support') diff --git a/c/src/tests/support/include/tmacros.h b/c/src/tests/support/include/tmacros.h index 8b3619a639..cfa8684057 100644 --- a/c/src/tests/support/include/tmacros.h +++ b/c/src/tests/support/include/tmacros.h @@ -62,15 +62,20 @@ extern "C" { #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 ) \ +#define fatal_directive_check_status_only( _stat, _desired, _msg ) \ do { \ - check_dispatch_disable_level( _level ); \ if ( (_stat) != (_desired) ) { \ printf( "\n%s FAILED -- expected (%s) got (%s)\n", \ (_msg), rtems_status_text(_desired), rtems_status_text(_stat) ); \ fflush(stdout); \ exit( _stat ); \ } \ + } while ( 0 ) + +#define fatal_directive_status_with_level( _stat, _desired, _msg, _level ) \ + do { \ + check_dispatch_disable_level( _level ); \ + fatal_directive_check_status_only( _stat, _desired, _msg ); \ } while ( 0 ) /* -- cgit v1.2.3