Further streamlined testing.
[fw/pdclib] / functions / stdio / snprintf.c
index 881baef800021afb124eb6bf7fdc662e78e81775..a34558992e5b84a717282dc5da67a976cdaeec8b 100644 (file)
@@ -26,9 +26,17 @@ int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
+#include <string.h>
+#include <limits.h>
+
+#define testprintf( s, n, format, ... ) snprintf( s, n, format, __VA_ARGS__ )
+
+#define TESTCASE_SPRINTF( x ) TESTCASE( x )
+
 int main( void )
 {
-    TESTCASE( NO_TESTDRIVER );
+    char buffer[100];
+#include "printf_testcases.incl"
     return TEST_RESULTS;
 }