Further streamlined testing.
[fw/pdclib] / functions / stdio / snprintf.c
index 3a6e706f8ebeb1e1b8e59009f243347acd82c357..a34558992e5b84a717282dc5da67a976cdaeec8b 100644 (file)
 
 int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict format, ...)
 {
+    int rc;
     va_list ap;
     va_start( ap, format );
-    return vsnprintf( s, n, format, ap );
+    rc = vsnprintf( s, n, format, ap );
+    va_end( ap );
+    return rc;
 }
 
 #endif
@@ -23,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;
 }