diff options
author | Nico Weber <nicolasweber@gmx.de> | 2016-05-06 21:17:32 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2016-05-06 21:17:32 +0000 |
commit | 05bc8c52e990dfb341763ceeef3a6e5e368b341f (patch) | |
tree | 5096370ad90169aedd83627f387e2357d3c1719c /clang/test/Preprocessor | |
parent | 2728074e3c104408e140962f1aecccd10cb18c19 (diff) | |
download | bcm5719-llvm-05bc8c52e990dfb341763ceeef3a6e5e368b341f.tar.gz bcm5719-llvm-05bc8c52e990dfb341763ceeef3a6e5e368b341f.zip |
Fix sysroot-prefix.c on Windows (/ vs \).
llvm-svn: 268797
Diffstat (limited to 'clang/test/Preprocessor')
-rw-r--r-- | clang/test/Preprocessor/sysroot-prefix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Preprocessor/sysroot-prefix.c b/clang/test/Preprocessor/sysroot-prefix.c index 5c086e3f820..08c72f53b44 100644 --- a/clang/test/Preprocessor/sysroot-prefix.c +++ b/clang/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" |