summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/unittests/Utility/FileSpecTest.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/lldb/unittests/Utility/FileSpecTest.cpp b/lldb/unittests/Utility/FileSpecTest.cpp
index 4f91d11fdf1..132c7cb94fa 100644
--- a/lldb/unittests/Utility/FileSpecTest.cpp
+++ b/lldb/unittests/Utility/FileSpecTest.cpp
@@ -379,3 +379,23 @@ TEST(FileSpecTest, RemoveLastPathComponent) {
EXPECT_FALSE(fs_windows.RemoveLastPathComponent());
EXPECT_STREQ("C:", fs_windows.GetCString());
}
+
+TEST(FileSpecTest, Equal) {
+ auto Eq = [](const char *a, const char *b, bool full) {
+ return FileSpec::Equal(PosixSpec(a), PosixSpec(b), full);
+ };
+ EXPECT_TRUE(Eq("/foo/bar", "/foo/bar", true));
+ EXPECT_TRUE(Eq("/foo/bar", "/foo/bar", false));
+
+ EXPECT_FALSE(Eq("/foo/bar", "/foo/baz", true));
+ EXPECT_FALSE(Eq("/foo/bar", "/foo/baz", false));
+
+ EXPECT_FALSE(Eq("/bar/foo", "/baz/foo", true));
+ EXPECT_FALSE(Eq("/bar/foo", "/baz/foo", false));
+
+ EXPECT_FALSE(Eq("/bar/foo", "foo", true));
+ EXPECT_TRUE(Eq("/bar/foo", "foo", false));
+
+ EXPECT_FALSE(Eq("foo", "/bar/foo", true));
+ EXPECT_TRUE(Eq("foo", "/bar/foo", false));
+}
OpenPOWER on IntegriCloud