}
#ifdef TEST
+#define _PDCLIB_FILEID "_PDCLIB/print.c"
#include <_PDCLIB_test.h>
#include <limits.h>
#define TEST_CONVERSION_ONLY
-#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \
- else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); }
-
int main( void )
{
char target[100];
#endif
#ifdef TEST
+#define _PDCLIB_FILEID "stdio/snprintf.c"
#include <_PDCLIB_test.h>
#include <string.h>
#define testprintf( s, format, ... ) snprintf( s, 100, format, __VA_ARGS__ )
-#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \
- else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); }
-
int main( void )
{
char target[100];
#endif
#ifdef TEST
+#define _PDCLIB_FILEID "stdio/sprintf.c"
#include <_PDCLIB_test.h>
#include <string.h>
#define testprintf( s, format, ... ) sprintf( s, format, __VA_ARGS__ )
-#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \
- else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); }
-
int main( void )
{
char target[100];
#endif
#ifdef TEST
+#define _PDCLIB_FILEID "stdio/vsnprintf.c"
#include <_PDCLIB_test.h>
#include <limits.h>
return i;
}
-#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \
- else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); }
-
int main( void )
{
char target[100];
#endif
#ifdef TEST
+#define _PDCLIB_FILEID "stdio/vsprintf.c"
#include <_PDCLIB_test.h>
#include <limits.h>
return i;
}
-#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \
- else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); }
-
int main( void )
{
char target[100];
#define TESTCASE( x ) if ( x ) {} \
else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); }
+#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \
+ else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ " (" _PDCLIB_FILEID "), line %d - \"%s\" != \"%s\"\n", __LINE__, target, x ); }
+
#ifndef REGTEST
#define TESTCASE_NOREG( x ) TESTCASE( x )
#else