From 0a78726ddd115f59b703c4fe81d3cc211be3758c Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 6 May 2016 21:17:32 +0000 Subject: [PATCH] Fix sysroot-prefix.c on Windows (/ vs \). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@268797 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Preprocessor/sysroot-prefix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Preprocessor/sysroot-prefix.c b/test/Preprocessor/sysroot-prefix.c index 5c086e3f82..08c72f53b4 100644 --- a/test/Preprocessor/sysroot-prefix.c +++ b/test/Preprocessor/sysroot-prefix.c @@ -14,12 +14,12 @@ // CHECK-NO_ISYSROOT_SYSROOT_DEV_NULL: ignoring nonexistent directory "=/var/empty/include" // CHECK-NO_ISYSROOT_SYSROOT_DEV_NULL-NOT: ignoring nonexistent directory "/var/empty/include" -// CHECK-ISYSROOT_SYSROOT_NULL: ignoring nonexistent directory "/var/empty/null" +// CHECK-ISYSROOT_SYSROOT_NULL: ignoring nonexistent directory "/var/empty{{.}}null" // CHECK-ISYSROOT_SYSROOT_NULL-NOT: ignoring nonexistent directory "=null" -// CHECK-ISYSROOT_ISYSROOT_SYSROOT_NULL: ignoring nonexistent directory "/var/empty/root/null" +// CHECK-ISYSROOT_ISYSROOT_SYSROOT_NULL: ignoring nonexistent directory "/var/empty/root{{.}}null" // CHECK-ISYSROOT_ISYSROOT_SYSROOT_NULL-NOT: ignoring nonexistent directory "=null" -// CHECK-ISYSROOT_ISYSROOT_SWAPPED_SYSROOT_NULL: ignoring nonexistent directory "/var/empty/null" +// CHECK-ISYSROOT_ISYSROOT_SWAPPED_SYSROOT_NULL: ignoring nonexistent directory "/var/empty{{.}}null" // CHECK-ISYSROOT_ISYSROOT_SWAPPED_SYSROOT_NULL-NOT: ignoring nonexistent directory "=null" -- 2.40.0