diff options
Diffstat (limited to 'llvm/unittests')
-rw-r--r-- | llvm/unittests/BinaryFormat/TestFileMagic.cpp | 2 | ||||
-rw-r--r-- | llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp | 2 | ||||
-rw-r--r-- | llvm/unittests/ProfileData/SampleProfTest.cpp | 2 | ||||
-rw-r--r-- | llvm/unittests/Support/Path.cpp | 6 | ||||
-rw-r--r-- | llvm/unittests/Support/raw_ostream_test.cpp | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/llvm/unittests/BinaryFormat/TestFileMagic.cpp b/llvm/unittests/BinaryFormat/TestFileMagic.cpp index 22c26df3080..9ed707bb5b3 100644 --- a/llvm/unittests/BinaryFormat/TestFileMagic.cpp +++ b/llvm/unittests/BinaryFormat/TestFileMagic.cpp @@ -123,7 +123,7 @@ TEST_F(MagicTest, Magic) { SmallString<128> file_pathname(TestDirectory); llvm::sys::path::append(file_pathname, i->filename); std::error_code EC; - raw_fd_ostream file(file_pathname, EC, sys::fs::F_None); + raw_fd_ostream file(file_pathname, EC, sys::fs::OF_None); ASSERT_FALSE(file.has_error()); StringRef magic(i->magic_str, i->magic_str_len); file << magic; diff --git a/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp b/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp index f336b0eebda..d2c0f3c3b20 100644 --- a/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp +++ b/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp @@ -531,7 +531,7 @@ bool dwarfgen::Generator::saveFile(StringRef Path) { if (FileBytes.empty()) return false; std::error_code EC; - raw_fd_ostream Strm(Path, EC, sys::fs::F_None); + raw_fd_ostream Strm(Path, EC, sys::fs::OF_None); if (EC) return false; Strm.write(FileBytes.data(), FileBytes.size()); diff --git a/llvm/unittests/ProfileData/SampleProfTest.cpp b/llvm/unittests/ProfileData/SampleProfTest.cpp index a9a8b119688..450dcd02346 100644 --- a/llvm/unittests/ProfileData/SampleProfTest.cpp +++ b/llvm/unittests/ProfileData/SampleProfTest.cpp @@ -44,7 +44,7 @@ struct SampleProfTest : ::testing::Test { void createWriter(SampleProfileFormat Format, StringRef Profile) { std::error_code EC; std::unique_ptr<raw_ostream> OS( - new raw_fd_ostream(Profile, EC, sys::fs::F_None)); + new raw_fd_ostream(Profile, EC, sys::fs::OF_None)); auto WriterOrErr = SampleProfileWriter::create(OS, Format); ASSERT_TRUE(NoError(WriterOrErr.getError())); Writer = std::move(WriterOrErr.get()); diff --git a/llvm/unittests/Support/Path.cpp b/llvm/unittests/Support/Path.cpp index ccd72d7f176..5e0581c945b 100644 --- a/llvm/unittests/Support/Path.cpp +++ b/llvm/unittests/Support/Path.cpp @@ -1021,7 +1021,7 @@ TEST_F(FileSystemTest, CarriageReturn) { path::append(FilePathname, "test"); { - raw_fd_ostream File(FilePathname, EC, sys::fs::F_Text); + raw_fd_ostream File(FilePathname, EC, sys::fs::OF_Text); ASSERT_NO_ERROR(EC); File << '\n'; } @@ -1032,7 +1032,7 @@ TEST_F(FileSystemTest, CarriageReturn) { } { - raw_fd_ostream File(FilePathname, EC, sys::fs::F_None); + raw_fd_ostream File(FilePathname, EC, sys::fs::OF_None); ASSERT_NO_ERROR(EC); File << '\n'; } @@ -1418,7 +1418,7 @@ TEST_F(FileSystemTest, AppendSetsCorrectFileOffset) { fs::CD_OpenExisting}; // Write some data and re-open it with every possible disposition (this is a - // hack that shouldn't work, but is left for compatibility. F_Append + // hack that shouldn't work, but is left for compatibility. OF_Append // overrides // the specified disposition. for (fs::CreationDisposition Disp : Disps) { diff --git a/llvm/unittests/Support/raw_ostream_test.cpp b/llvm/unittests/Support/raw_ostream_test.cpp index 4ce4917fcea..497d31317ce 100644 --- a/llvm/unittests/Support/raw_ostream_test.cpp +++ b/llvm/unittests/Support/raw_ostream_test.cpp @@ -339,7 +339,7 @@ TEST(raw_ostreamTest, FormattedHexBytes) { TEST(raw_fd_ostreamTest, multiple_raw_fd_ostream_to_stdout) { std::error_code EC; - { raw_fd_ostream("-", EC, sys::fs::OpenFlags::F_None); } - { raw_fd_ostream("-", EC, sys::fs::OpenFlags::F_None); } + { raw_fd_ostream("-", EC, sys::fs::OpenFlags::OF_None); } + { raw_fd_ostream("-", EC, sys::fs::OpenFlags::OF_None); } } } |