]> pd.if.org Git - pdclib/blobdiff - internals/_PDCLIB_test.h
Intermediate work while migrating CVS -> SVN.
[pdclib] / internals / _PDCLIB_test.h
index b35c994180ebd394d91ac271e30b05892490eb7a..42664b26449050c512a1f50ff99f857c57a2a621 100644 (file)
@@ -1,23 +1,24 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
-/* PDCLib testing suite <_PDCLIB_test.h>
-
-   This file is part of the Public Domain C Library (PDCLib).
-   Permission is granted to use, modify, and / or redistribute at will.
-*/
-
-/* -------------------------------------------------------------------------- */
-/* Helper macros for test drivers                                             */
-/* -------------------------------------------------------------------------- */
-
-#include <stdio.h>
-
-char const abcde[] = "abcde";
-char const abcdx[] = "abcdx";
-
-#define BEGIN_TESTS   unsigned int rc = 0
-#define TESTCASE( x ) if ( x ) {} \
-                      else { rc += 1; printf( "Testcase failed: " __FILE__ " - " #x "\n" ); }
-#define TEST_RESULTS  rc
+/* $Id$ */\r
+\r
+/* PDCLib testing suite <_PDCLIB_test.h>\r
+\r
+   This file is part of the Public Domain C Library (PDCLib).\r
+   Permission is granted to use, modify, and / or redistribute at will.\r
+*/\r
+\r
+/* -------------------------------------------------------------------------- */\r
+/* Helper macros for test drivers                                             */\r
+/* -------------------------------------------------------------------------- */\r
+\r
+#include <stdio.h>\r
+\r
+char const abcde[] = "abcde";\r
+char const abcdx[] = "abcdx";\r
+\r
+int NO_TESTDRIVER = 0;\r
+\r
+//#define BEGIN_TESTS   unsigned int rc = 0\r
+static unsigned int rc = 0;\r
+#define TESTCASE( x ) if ( x ) {} \\r
+                      else { rc += 1; printf( "Testcase failed: " __FILE__ ", line %d - " #x "\n", __LINE__ ); }\r
+#define TEST_RESULTS  rc\r