summaryrefslogtreecommitdiff
path: root/lldb/unittests
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests')
-rw-r--r--lldb/unittests/Host/FileSystemTest.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/unittests/Host/FileSystemTest.cpp b/lldb/unittests/Host/FileSystemTest.cpp
index 6c55a965806..25469403748 100644
--- a/lldb/unittests/Host/FileSystemTest.cpp
+++ b/lldb/unittests/Host/FileSystemTest.cpp
@@ -225,11 +225,7 @@ TEST(FileSystemTest, MakeAbsolute) {
SmallString<16> foo(foo_relative);
auto EC = fs.MakeAbsolute(foo);
EXPECT_FALSE(EC);
-#ifdef _WIN32
- EXPECT_TRUE(foo.equals("\\foo"));
-#else
EXPECT_TRUE(foo.equals("/foo"));
-#endif
}
{
@@ -247,11 +243,7 @@ TEST(FileSystemTest, Resolve) {
StringRef foo_relative = "foo";
SmallString<16> foo(foo_relative);
fs.Resolve(foo);
-#ifdef _WIN32
- EXPECT_TRUE(foo.equals("\\foo"));
-#else
EXPECT_TRUE(foo.equals("/foo"));
-#endif
}
{