diff options
author | Matthew Voss <matthew.voss@sony.com> | 2018-11-30 19:52:50 +0000 |
---|---|---|
committer | Matthew Voss <matthew.voss@sony.com> | 2018-11-30 19:52:50 +0000 |
commit | 601d311326d50958aeab6e9ccd5aec99131fafff (patch) | |
tree | fa1d570822b967c06c091a266e052058432bc7ae /clang/unittests/Basic/FileManagerTest.cpp | |
parent | f130d111b68ac28da4143257b1c735b8c813eb69 (diff) | |
download | llvm-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.cpp | 2 |
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 |