summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/Support
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2019-01-29 19:07:15 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2019-01-29 19:07:15 +0000
commit2a5a0ad1e464d3f7de437540328bfda5ac5b5538 (patch)
treeebb9c181028dbda413496d1c1080e5f13f1722e5 /llvm/unittests/Support
parent316ccf60c9094d0b6c32761526782bd407bc3099 (diff)
downloadbcm5719-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.cpp2
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 {
OpenPOWER on IntegriCloud