From: Matthew Voss Date: Fri, 30 Nov 2018 19:52:50 +0000 (+0000) Subject: Expect mixed path separators in FileManagerTest when resolving paths on Win32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c6f25cea1f3c7b2535f3ce80bdb9fe61e0434fa;p=clang Expect mixed path separators in FileManagerTest when resolving paths on Win32 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348028 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Basic/FileManagerTest.cpp b/unittests/Basic/FileManagerTest.cpp index 21b411c978..f0b143de79 100644 --- a/unittests/Basic/FileManagerTest.cpp +++ b/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