jorton 2004/03/27 08:15:02
Modified: test testlfs.c
Log:
* test/testlfs.c: Fix tests for !APR_HAS_LARGE_FILES.
Revision Changes Path
1.2 +2 -2 apr/test/testlfs.c
Index: testlfs.c
===================================================================
RCS file: /home/cvs/apr/test/testlfs.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -w -d -u -r1.1 -r1.2
--- testlfs.c 27 Mar 2004 13:11:18 -0000 1.1
+++ testlfs.c 27 Mar 2004 16:15:02 -0000 1.2
@@ -35,7 +35,7 @@
static int madefile = 0;
-#define PRECOND if (!madefile) CuNotImpl(tc, NULL)
+#define PRECOND if (!madefile) CuNotImpl(tc, "Large file tests not enabled")
#define TESTDIR "lfstests"
#define TESTFILE "large.bin"
@@ -270,7 +270,7 @@
#endif
SUITE_ADD_TEST(suite, test_format);
#else
- SUITE_ADD_TEST(suite, test_nolfs)
+ SUITE_ADD_TEST(suite, test_nolfs);
#endif
return suite;