diff -r 31a43d94cc26 -r 21a6c17f4e3e test/VersionDictionary_test.cpp --- a/test/VersionDictionary_test.cpp Sun Sep 20 15:14:12 2009 -0700 +++ b/test/VersionDictionary_test.cpp Mon Sep 28 23:39:08 2009 -0700 @@ -46,16 +46,16 @@ TEST(File,HasPath) { { - File f("/tmp/jubba", O_RDWR | O_CREAT | O_TRUNC); + File f("/tmp/jubba", O_RDWR | O_CREAT | O_TRUNC, true); f.write("howdy"); } { - File f("/tmp/jubba", O_RDWR); + File f("/tmp/jubba", O_RDWR, true); EXPECT_TRUE(f.hasPath("/tmp/jubba")); File::unlink("/tmp/jubba"); EXPECT_FALSE(f.hasPath("/tmp/jubba")); - - File f2("/tmp/jubba", O_RDWR | O_CREAT | O_TRUNC); + + File f2("/tmp/jubba", O_RDWR | O_CREAT | O_TRUNC, true); f2.write("howdy"); f2.flush(); @@ -108,7 +108,7 @@ time_t startTime = ::time(NULL); time_t createTime; { - File file("/tmp/hashfiletest", O_RDWR | O_CREAT | O_TRUNC); + File file("/tmp/hashfiletest", O_RDWR | O_CREAT | O_TRUNC, true); VersionDictionary *hf; { Timer t("Creating & writing VersionDictionary", nWords); @@ -152,7 +152,7 @@ } { printf("Opening OverlayVersionDictionary...\n"); - File file("/tmp/hashfiletest", O_RDWR); + File file("/tmp/hashfiletest", O_RDWR, true); OverlayVersionDictionary hf(&file); EXPECT_EQ( nWords , hf.count() ); EXPECT_TRUE(hf.get("abatement").equals("abatement")); @@ -225,7 +225,7 @@ File oldFile("/tmp/hashfiletest"); OverlayVersionDictionary oldhf(&oldFile); - File newFile("/tmp/hashfiletest2", O_RDWR | O_CREAT | O_TRUNC); + File newFile("/tmp/hashfiletest2", O_RDWR | O_CREAT | O_TRUNC, true); newFile.write("Ha5h", 4); // VersionDictionary won't write to an empty file oldhf.saveAs(&newFile); printf("File size: %llu bytes\n", newFile.length());