[Lldb-commits] [lldb] r332633 - Fix buildbots after it 332618

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu May 17 10:18:11 PDT 2018


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,




More information about the lldb-commits mailing list