From: solar Date: Fri, 2 Dec 2005 11:04:38 +0000 (+0000) Subject: Added line number to failed testcase output. X-Git-Tag: v0.4~58 X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=82137033fa3ea0e6d5b3939ab379b4a4f08d89f2 Added line number to failed testcase output. --- 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