sptests/spfatal11: Update due to API changes

This commit is contained in:
Sebastian Huber
2013-02-12 14:15:43 +01:00
parent 7571a235c5
commit 9a2ead0246
2 changed files with 22 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
*** TEST FATAL 11 ***
assertion "forced" failed: file "testsuites/sptests/spfatal11/testcase.h", line 23
Fatal error (asserting with non-NULL strings...) hit
assertion "forced" failed: file "testcase.h", line 38
Fatal error (asserting with NULL strings...) hit
*** END OF TEST FATAL 11 ***

View File

@@ -9,16 +9,33 @@
*/
#include <assert.h>
#include <string.h>
#define FATAL_ERROR_TEST_NAME "11"
#define FATAL_ERROR_DESCRIPTION "asserting with non-NULL strings..."
#define FATAL_ERROR_DESCRIPTION "asserting with NULL strings..."
#define FATAL_ERROR_EXPECTED_SOURCE RTEMS_FATAL_SOURCE_ASSERT
#define FATAL_ERROR_EXPECTED_IS_INTERNAL FALSE
#define FATAL_ERROR_EXPECTED_ERROR 0
#define FATAL_ERROR_EXPECTED_ERROR_CHECK spfatal11_is_expected_error
#define ASSERT_FILE "testcase.h"
#define ASSERT_LINE 38
#define ASSERT_FUNC NULL
#define ASSERT_FEXP "forced"
static inline bool spfatal11_is_expected_error( rtems_fatal_code error )
{
const rtems_assert_context *assert_context =
(const rtems_assert_context *) error;
return strcmp( assert_context->file, ASSERT_FILE ) == 0
&& assert_context->line == ASSERT_LINE
&& assert_context->function == ASSERT_FUNC
&& strcmp( assert_context->failed_expression, ASSERT_FEXP ) == 0;
}
void force_error()
{
__assert_func( __FILE__, __LINE__, NULL, "forced" );
__assert_func( ASSERT_FILE, ASSERT_LINE, ASSERT_FUNC, ASSERT_FEXP );
/* we will not run this far */
}