diff options
| author | Michael J. Spencer <bigcheesegs@gmail.com> | 2019-01-29 19:07:15 +0000 | 
|---|---|---|
| committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2019-01-29 19:07:15 +0000 | 
| commit | 2a5a0ad1e464d3f7de437540328bfda5ac5b5538 (patch) | |
| tree | ebb9c181028dbda413496d1c1080e5f13f1722e5 /llvm/unittests/Support | |
| parent | 316ccf60c9094d0b6c32761526782bd407bc3099 (diff) | |
| download | bcm5719-llvm-2a5a0ad1e464d3f7de437540328bfda5ac5b5538.tar.gz bcm5719-llvm-2a5a0ad1e464d3f7de437540328bfda5ac5b5538.zip | |
[VFS] Fix warning and use better check.
llvm-svn: 352527
Diffstat (limited to 'llvm/unittests/Support')
| -rw-r--r-- | llvm/unittests/Support/VirtualFileSystemTest.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/unittests/Support/VirtualFileSystemTest.cpp b/llvm/unittests/Support/VirtualFileSystemTest.cpp index f6cbd5bbae3..fc39f5004c2 100644 --- a/llvm/unittests/Support/VirtualFileSystemTest.cpp +++ b/llvm/unittests/Support/VirtualFileSystemTest.cpp @@ -776,7 +776,7 @@ TEST(ProxyFileSystemTest, Basic) {    bool Local = true;    ASSERT_FALSE(PFS.isLocal("/a", Local)); -  ASSERT_EQ(false, Local); +  EXPECT_FALSE(Local);  }  class InMemoryFileSystemTest : public ::testing::Test { | 

