From eaa6524ce2f7499cea9633be6fba9e0de37d0210 Mon Sep 17 00:00:00 2001 From: solar Date: Fri, 2 Dec 2005 11:04:38 +0000 Subject: [PATCH] Added line number to failed testcase output. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@82 546481bc-9713-0410-bf18-d3337bbf4a3e --- internals/_PDCLIB_test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/_PDCLIB_test.h b/internals/_PDCLIB_test.h index b35c994..057f957 100644 --- a/internals/_PDCLIB_test.h +++ b/internals/_PDCLIB_test.h @@ -19,5 +19,5 @@ char const abcdx[] = "abcdx"; #define BEGIN_TESTS unsigned int rc = 0 #define TESTCASE( x ) if ( x ) {} \ - else { rc += 1; printf( "Testcase failed: " __FILE__ " - " #x "\n" ); } + else { rc += 1; printf( "Testcase failed: " __FILE__ ", line %d - " #x "\n", __LINE__ ); } #define TEST_RESULTS rc -- 2.47.2