]> pd.if.org Git - pdclib/blobdiff - functions/string/strncmp.c
Added test drivers.
[pdclib] / functions / string / strncmp.c
index 624cdbcb190d6013a727dc56bed29b3cb023e143..35a9511da11174497d831d91857d56a8511d3dcb 100644 (file)
@@ -28,4 +28,23 @@ int strncmp( const char * s1, const char * s2, size_t n )
     }
 }
 
-#warning Test driver missing.
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main()
+{
+    char cmpabcde[] = "abcde";
+    char empty[] = "";
+    char x[] = "x";
+    BEGIN_TESTS;
+    TESTCASE( strncmp( abcde, cmpabcde, 5 ) == 0 );
+    TESTCASE( strncmp( abcde, abcdx, 5 ) < 0 );
+    TESTCASE( strncmp( abcdx, abcde, 5 ) > 0 );
+    TESTCASE( strncmp( empty, abcde, 5 ) < 0 );
+    TESTCASE( strncmp( abcde, empty, 5 ) > 0 );
+    TESTCASE( strncmp( abcde, abcdx, 4 ) == 0 );
+    TESTCASE( strncmp( abcde, x, 0 ) == 0 );
+    TESTCASE( strncmp( abcde, x, 1 ) < 0 );
+    return TEST_RESULTS;
+}
+#endif