[Lldb-commits] [lldb] 0f3ed7a - [lldb] Fix incorrect test data in FileSpecTest.IsRelative

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 15 03:43:17 PDT 2021


Author: Raphael Isemann
Date: 2021-04-15T12:42:47+02:00
New Revision: 0f3ed7a48dba2eb3ad726fc8f513159baca13b71

URL: https://github.com/llvm/llvm-project/commit/0f3ed7a48dba2eb3ad726fc8f513159baca13b71
DIFF: https://github.com/llvm/llvm-project/commit/0f3ed7a48dba2eb3ad726fc8f513159baca13b71.diff

LOG: [lldb] Fix incorrect test data in FileSpecTest.IsRelative

Found by clang-tidy's bugprone-suspicious-missing-comma.

Added: 
    

Modified: 
    lldb/unittests/Utility/FileSpecTest.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/unittests/Utility/FileSpecTest.cpp b/lldb/unittests/Utility/FileSpecTest.cpp
index ad2e328ce82fe..3dd355284ce0f 100644
--- a/lldb/unittests/Utility/FileSpecTest.cpp
+++ b/lldb/unittests/Utility/FileSpecTest.cpp
@@ -305,7 +305,7 @@ TEST(FileSpecTest, IsRelative) {
     "~/",
     "~/a",
     "~/a/",
-    "~/a/b"
+    "~/a/b",
     "~/a/b/",
     "/foo/.",
     "/foo/..",


        


More information about the lldb-commits mailing list