aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests/Basic/FileManagerTest.cpp
diff options
context:
space:
mode:
authorMatthew Voss <matthew.voss@sony.com>2018-11-30 19:52:50 +0000
committerMatthew Voss <matthew.voss@sony.com>2018-11-30 19:52:50 +0000
commit601d311326d50958aeab6e9ccd5aec99131fafff (patch)
treefa1d570822b967c06c091a266e052058432bc7ae /clang/unittests/Basic/FileManagerTest.cpp
parentf130d111b68ac28da4143257b1c735b8c813eb69 (diff)
downloadllvm-601d311326d50958aeab6e9ccd5aec99131fafff.zip
llvm-601d311326d50958aeab6e9ccd5aec99131fafff.tar.gz
llvm-601d311326d50958aeab6e9ccd5aec99131fafff.tar.bz2
Expect mixed path separators in FileManagerTest when resolving paths on Win32
llvm-svn: 348028
Diffstat (limited to 'clang/unittests/Basic/FileManagerTest.cpp')
-rw-r--r--clang/unittests/Basic/FileManagerTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Basic/FileManagerTest.cpp b/clang/unittests/Basic/FileManagerTest.cpp
index 21b411c..f0b143d 100644
--- a/clang/unittests/Basic/FileManagerTest.cpp
+++ b/clang/unittests/Basic/FileManagerTest.cpp
@@ -363,7 +363,7 @@ TEST_F(FileManagerTest, getVirtualFileFillsRealPathName) {
ASSERT_TRUE(file->isValid());
SmallString<64> ExpectedResult;
#ifdef _WIN32
- ExpectedResult = "C:";
+ ExpectedResult = "C:/";
#else
ExpectedResult = "/";
#endif