diff options
| author | Pavel Labath <labath@google.com> | 2018-04-20 08:27:27 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2018-04-20 08:27:27 +0000 |
| commit | 0e0906c2218ab38d3b3391151c86fc570df42f14 (patch) | |
| tree | c6d878c9807f05a13134e4e8240cc4cbd1343654 | |
| parent | 3858e26f228392fd448b5df553b5bec7747aaebc (diff) | |
| download | bcm5719-llvm-0e0906c2218ab38d3b3391151c86fc570df42f14.tar.gz bcm5719-llvm-0e0906c2218ab38d3b3391151c86fc570df42f14.zip | |
Move FileSpecTest to Utility
FileSpec class was moved to the Utility module a while ago, but the test
file was left behind. This corrects that.
llvm-svn: 330405
| -rw-r--r-- | lldb/unittests/Host/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | lldb/unittests/Utility/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | lldb/unittests/Utility/FileSpecTest.cpp (renamed from lldb/unittests/Host/FileSpecTest.cpp) | 12 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lldb/unittests/Host/CMakeLists.txt b/lldb/unittests/Host/CMakeLists.txt index 238026b64c4..a3f97625c85 100644 --- a/lldb/unittests/Host/CMakeLists.txt +++ b/lldb/unittests/Host/CMakeLists.txt @@ -1,5 +1,4 @@ set (FILES - FileSpecTest.cpp FileSystemTest.cpp HostInfoTest.cpp HostTest.cpp diff --git a/lldb/unittests/Utility/CMakeLists.txt b/lldb/unittests/Utility/CMakeLists.txt index f4627b08fc1..f7731a73d97 100644 --- a/lldb/unittests/Utility/CMakeLists.txt +++ b/lldb/unittests/Utility/CMakeLists.txt @@ -4,6 +4,7 @@ add_lldb_unittest(UtilityTests CleanUpTest.cpp ConstStringTest.cpp EnvironmentTest.cpp + FileSpecTest.cpp JSONTest.cpp LogTest.cpp NameMatchesTest.cpp diff --git a/lldb/unittests/Host/FileSpecTest.cpp b/lldb/unittests/Utility/FileSpecTest.cpp index cb6877e7b62..5177a6b96fe 100644 --- a/lldb/unittests/Host/FileSpecTest.cpp +++ b/lldb/unittests/Utility/FileSpecTest.cpp @@ -167,7 +167,7 @@ TEST(FileSpecTest, EqualDotsWindows) { {R"(C:\foo\bar)", R"(C:\foo\bar\.)"}, }; - for(const auto &test: tests) { + for (const auto &test : tests) { FileSpec one(test.first, false, FileSpec::ePathSyntaxWindows); FileSpec two(test.second, false, FileSpec::ePathSyntaxWindows); EXPECT_NE(one, two); @@ -176,7 +176,6 @@ TEST(FileSpecTest, EqualDotsWindows) { Compare(one, two, !full_match, remove_backup_dots, match); Compare(one, two, !full_match, !remove_backup_dots, !match); } - } TEST(FileSpecTest, EqualDotsPosix) { @@ -191,7 +190,7 @@ TEST(FileSpecTest, EqualDotsPosix) { {R"(/foo/bar)", R"(/foo/bar/.)"}, }; - for(const auto &test: tests) { + for (const auto &test : tests) { FileSpec one(test.first, false, FileSpec::ePathSyntaxPosix); FileSpec two(test.second, false, FileSpec::ePathSyntaxPosix); EXPECT_NE(one, two); @@ -200,7 +199,6 @@ TEST(FileSpecTest, EqualDotsPosix) { Compare(one, two, !full_match, remove_backup_dots, match); Compare(one, two, !full_match, !remove_backup_dots, !match); } - } TEST(FileSpecTest, EqualDotsPosixRoot) { @@ -208,10 +206,12 @@ TEST(FileSpecTest, EqualDotsPosixRoot) { const bool remove_backup_dots = true; const bool match = true; std::pair<const char *, const char *> tests[] = { - {R"(/)", R"(/..)"}, {R"(/)", R"(/.)"}, {R"(/)", R"(/foo/..)"}, + {R"(/)", R"(/..)"}, + {R"(/)", R"(/.)"}, + {R"(/)", R"(/foo/..)"}, }; - for(const auto &test: tests) { + for (const auto &test : tests) { FileSpec one(test.first, false, FileSpec::ePathSyntaxPosix); FileSpec two(test.second, false, FileSpec::ePathSyntaxPosix); EXPECT_NE(one, two); |

