You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2005/09/16 18:57:26 UTC

svn commit: r289609 - /apr/apr/branches/1.2.x/test/testlfs.c

Author: jorton
Date: Fri Sep 16 09:57:23 2005
New Revision: 289609

URL: http://svn.apache.org/viewcvs?rev=289609&view=rev
Log:
Merge r289608 from trunk:

* test/testlfs.c: Fix cpp tests broken in r280469.

Modified:
    apr/apr/branches/1.2.x/test/testlfs.c

Modified: apr/apr/branches/1.2.x/test/testlfs.c
URL: http://svn.apache.org/viewcvs/apr/apr/branches/1.2.x/test/testlfs.c?rev=289609&r1=289608&r2=289609&view=diff
==============================================================================
--- apr/apr/branches/1.2.x/test/testlfs.c (original)
+++ apr/apr/branches/1.2.x/test/testlfs.c Fri Sep 16 09:57:23 2005
@@ -26,12 +26,12 @@
 
 /* Only enable these tests by default on platforms which support sparse
  * files... just Unixes? */
-#if defined(WIN32) || !defined(OS2) || !defined(NETWARE)
+#if defined(WIN32) || defined(OS2) || defined(NETWARE)
 static void test_nolfs(abts_case *tc, void *data)
 {
     ABTS_NOT_IMPL(tc, "Large Files tests require Sparse file support");
 }
-#elif APR_HAS_LARGE_FILES && 
+#elif APR_HAS_LARGE_FILES
 #define USE_LFS_TESTS
 
 /* Tests which create an 8Gb sparse file and then check it can be used