From 93c1316b70273585b573e29ba482c1f9d2815d2c Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sat, 9 Aug 2014 00:37:05 +0000 Subject: [PATCH] Fix expected windows result. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215267 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index 9c156401927..7bf66e0534a 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -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"); -- 2.34.1