summaryrefslogtreecommitdiff
path: root/test/testlfs.c
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-03-27 16:15:02 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-03-27 16:15:02 +0000
commitedfa52c88e1063f5ba4fd659e5a38a414af7da1b (patch)
treefb99f87884ed235d84de4c5d6578ce2b0d23cb37 /test/testlfs.c
parent263ebecba3310066882fe83f7309c4f101ff34d2 (diff)
downloadlibapr-edfa52c88e1063f5ba4fd659e5a38a414af7da1b.tar.gz
* test/testlfs.c: Fix tests for !APR_HAS_LARGE_FILES.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65028 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testlfs.c')
-rw-r--r--test/testlfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testlfs.c b/test/testlfs.c
index b1297fc6a..828b631a2 100644
--- a/test/testlfs.c
+++ b/test/testlfs.c
@@ -35,7 +35,7 @@ static apr_off_t eightGb = APR_INT64_C(2) << 32;
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 @@ CuSuite *testlfs(void)
#endif
SUITE_ADD_TEST(suite, test_format);
#else
- SUITE_ADD_TEST(suite, test_nolfs)
+ SUITE_ADD_TEST(suite, test_nolfs);
#endif
return suite;