[llvm] r215267 - Fix expected windows result.

Rafael Espindola rafael.espindola at gmail.com
Fri Aug 8 17:37:05 PDT 2014


Author: rafael
Date: Fri Aug  8 19:37:05 2014
New Revision: 215267

URL: http://llvm.org/viewvc/llvm-project?rev=215267&view=rev
Log:
Fix expected windows result.

Modified:
    llvm/trunk/unittests/Support/Path.cpp

Modified: llvm/trunk/unittests/Support/Path.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Support/Path.cpp?rev=215267&r1=215266&r2=215267&view=diff
==============================================================================
--- llvm/trunk/unittests/Support/Path.cpp (original)
+++ llvm/trunk/unittests/Support/Path.cpp Fri Aug  8 19:37:05 2014
@@ -644,7 +644,7 @@ TEST(Support, NormalizePath) {
   EXPECT_PATH_IS(Path1, "a", "a");
 
   path::native(Path2);
-  EXPECT_PATH_IS(Path2, "a/b", "a/b");
+  EXPECT_PATH_IS(Path2, "a\\b", "a/b");
 
   path::native(Path3);
   EXPECT_PATH_IS(Path3, "a\\b", "a/b");





More information about the llvm-commits mailing list