From 601d311326d50958aeab6e9ccd5aec99131fafff Mon Sep 17 00:00:00 2001 From: Matthew Voss Date: Fri, 30 Nov 2018 19:52:50 +0000 Subject: [PATCH] Expect mixed path separators in FileManagerTest when resolving paths on Win32 llvm-svn: 348028 --- clang/unittests/Basic/FileManagerTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4