From: Michael J. Spencer Date: Sat, 15 Jan 2011 18:52:49 +0000 (+0000) Subject: Unittests/Support/Path: Tweak test. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=248f9f280756a1d6eb20a97ee4ab457ec18170f6;p=oota-llvm.git Unittests/Support/Path: Tweak test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123546 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index fa2b45f03b3..1f67f13e97e 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -230,7 +230,7 @@ TEST_F(FileSystemTest, Magic) { ASSERT_FALSE(file.has_error()); StringRef magic(i->magic_str, i->magic_str_len); file << magic; - file.flush(); + file.close(); bool res = false; ASSERT_NO_ERROR(fs::has_magic(file_pathname.c_str(), magic, res)); EXPECT_TRUE(res);