summaryrefslogtreecommitdiffstats
path: root/lldb/unittests/Host/FileSpecTest.cpp
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2016-04-13 13:26:45 +0000
committerPavel Labath <labath@google.com>2016-04-13 13:26:45 +0000
commitb0743fb2e953a7fac129bc559a3b3747fdd7a66f (patch)
tree53d92193052a2255245d17b9280bee83c78e5d3e /lldb/unittests/Host/FileSpecTest.cpp
parentc2b6128a8f28b83b6e9a3feffc98ce509a66dc4c (diff)
downloadbcm5719-llvm-b0743fb2e953a7fac129bc559a3b3747fdd7a66f.tar.gz
bcm5719-llvm-b0743fb2e953a7fac129bc559a3b3747fdd7a66f.zip
Remove obsolete comments
llvm-svn: 266196
Diffstat (limited to 'lldb/unittests/Host/FileSpecTest.cpp')
-rw-r--r--lldb/unittests/Host/FileSpecTest.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/unittests/Host/FileSpecTest.cpp b/lldb/unittests/Host/FileSpecTest.cpp
index 89092c4604d..ea5f0d9b157 100644
--- a/lldb/unittests/Host/FileSpecTest.cpp
+++ b/lldb/unittests/Host/FileSpecTest.cpp
@@ -47,7 +47,6 @@ TEST(FileSpecTest, FileAndDirectoryComponents)
FileSpec fs_windows_long("F:\\bar\\baz", false, FileSpec::ePathSyntaxWindows);
EXPECT_STREQ("F:\\bar\\baz", fs_windows_long.GetCString());
- // We get "F:/bar" instead.
EXPECT_STREQ("F:\\bar", fs_windows_long.GetDirectory().GetCString());
EXPECT_STREQ("baz", fs_windows_long.GetFilename().GetCString());
@@ -58,7 +57,6 @@ TEST(FileSpecTest, FileAndDirectoryComponents)
FileSpec fs_windows_trailing_slash("F:\\bar\\", false, FileSpec::ePathSyntaxWindows);
EXPECT_STREQ("F:\\bar\\.", fs_windows_trailing_slash.GetCString());
- // We get "F:/bar" instead.
EXPECT_STREQ("F:\\bar", fs_windows_trailing_slash.GetDirectory().GetCString());
EXPECT_STREQ(".", fs_windows_trailing_slash.GetFilename().GetCString());
}
OpenPOWER on IntegriCloud