]> granicus.if.org Git - clang/commitdiff
Expect mixed path separators in FileManagerTest when resolving paths on Win32
authorMatthew Voss <matthew.voss@sony.com>
Fri, 30 Nov 2018 19:52:50 +0000 (19:52 +0000)
committerMatthew Voss <matthew.voss@sony.com>
Fri, 30 Nov 2018 19:52:50 +0000 (19:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348028 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Basic/FileManagerTest.cpp

index 21b411c978d12065c7f1b2246d65f9987988d837..f0b143de79b810447d8667424b1c394464e4a1e3 100644 (file)
@@ -363,7 +363,7 @@ TEST_F(FileManagerTest, getVirtualFileFillsRealPathName) {
   ASSERT_TRUE(file->isValid());
   SmallString<64> ExpectedResult;
 #ifdef _WIN32
-  ExpectedResult = "C:";
+  ExpectedResult = "C:/";
 #else
   ExpectedResult = "/";
 #endif