Author: gclayton Date: Thu May 17 10:18:11 2018 New Revision: 332633 URL: http://llvm.org/viewvc/llvm-project?rev=332633&view=rev Log: Fix buildbots after it 332618
Modified: lldb/trunk/unittests/Utility/FileSpecTest.cpp Modified: lldb/trunk/unittests/Utility/FileSpecTest.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/unittests/Utility/FileSpecTest.cpp?rev=332633&r1=332632&r2=332633&view=diff ============================================================================== --- lldb/trunk/unittests/Utility/FileSpecTest.cpp (original) +++ lldb/trunk/unittests/Utility/FileSpecTest.cpp Thu May 17 10:18:11 2018 @@ -200,7 +200,6 @@ TEST(FileSpecTest, GetNormalizedPath) { {"/.", "/"}, {"..", ".."}, {".", "."}, - {"", "."}, {"../..", "../.."}, {"foo/..", "."}, {"foo/../bar", "bar"}, @@ -242,7 +241,6 @@ TEST(FileSpecTest, GetNormalizedPath) { {R"(.\.\foo)", R"(foo)"}, {R"(..\foo)", R"(..\foo)"}, {R"(..\..\foo)", R"(..\..\foo)"}, - {"", "."}, }; for (auto test : windows_tests) { EXPECT_EQ(test.second, _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits