From 0c6b5576c22d016550f6279f6366f0507b440cc6 Mon Sep 17 00:00:00 2001 From: solar Date: Thu, 24 Jun 2010 13:42:59 +0000 Subject: [PATCH] Testcase printing made safe. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@431 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 eba7391..ad02b0f 100644 --- a/internals/_PDCLIB_test.h +++ b/internals/_PDCLIB_test.h @@ -21,7 +21,7 @@ int NO_TESTDRIVER = 0; static int rc = 0; #define TESTCASE( x ) if ( x ) {} \ - else { rc += 1; printf( "FAILED: " __FILE__ ", line %d - " #x "\n", __LINE__ ); } + else { rc += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); } #ifndef REGTEST #define TESTCASE_NOREG( x ) TESTCASE( x ) -- 2.30.2