Author: jorton Date: Fri Sep 16 09:53:23 2005 New Revision: 289608 URL: http://svn.apache.org/viewcvs?rev=289608&view=rev Log: * test/testlfs.c: Fix cpp tests broken in r280469. Modified: apr/apr/trunk/test/testlfs.c Modified: apr/apr/trunk/test/testlfs.c URL: http://svn.apache.org/viewcvs/apr/apr/trunk/test/testlfs.c?rev=289608&r1=289607&r2=289608&view=diff ============================================================================== --- apr/apr/trunk/test/testlfs.c (original) +++ apr/apr/trunk/test/testlfs.c Fri Sep 16 09:53: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