Changeset 1457
- Timestamp:
- Aug 30, 2008, 5:11:11 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r1455 r1457 175 175 #support for large files 176 176 AC_SYS_LARGEFILE 177 if test "$enable_largefile" = "no"; then 178 AC_DEFINE([YAT_LFS_DISABLED], 1, 179 [defined to 1 if large file support is disabled]) 180 fi 177 181 178 182 CXXFLAGS="$CXXFLAGS -Wall -pedantic" -
trunk/test/fileutil_test.cc
r1456 r1457 178 178 } 179 179 catch (std::invalid_argument& e) { 180 suite.err() << "Expected exception thrown with what: " << e.what() << std::endl; 181 } 182 180 suite.err() << "Expected exception thrown with what: " << e.what() 181 << std::endl; 182 } 183 184 #ifndef YAT_LFS_DISABLED 183 185 test_large_file_support(suite); 186 #else 187 suite.err() << "Skipping test of large file support\n"; 188 #endif 184 189 return suite.return_value(); 185 190 }
Note: See TracChangeset
for help on using the changeset viewer.