summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2016-04-26 20:40:23 +0000
committerNico Weber <nicolasweber@gmx.de>2016-04-26 20:40:23 +0000
commit197e5cfe34fc24188714731a4c0f72807c44e32e (patch)
tree31b2ea4781f97f0f824d7a8108fe61388e062850 /clang/test
parent673b609586c1ae7a61108342ec6353989bee1497 (diff)
downloadbcm5719-llvm-197e5cfe34fc24188714731a4c0f72807c44e32e.tar.gz
bcm5719-llvm-197e5cfe34fc24188714731a4c0f72807c44e32e.zip
Try to get at_file_missing.c passing after LLVM r267556.
r267556 made backslashes escape the next character unconditionally in rsp files. This test echos a path into a rsp file, and paths contain backslashes on Windows. Since it's not important for this test to get the filename from the rsp file, just pass it regularly. llvm-svn: 267601
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/Driver/at_file_missing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Driver/at_file_missing.c b/clang/test/Driver/at_file_missing.c
index 0189a8bb757..23645a5d3f9 100644
--- a/clang/test/Driver/at_file_missing.c
+++ b/clang/test/Driver/at_file_missing.c
@@ -1,7 +1,7 @@
// Make sure that arguments that begin with @ are left as is in the argument
// stream, and also that @file arguments continue to be processed.
-// RUN: echo "%s -D FOO" > %t.args
-// RUN: %clang -rpath @executable_path/../lib @%t.args -### 2>&1 | FileCheck %s
+// RUN: echo "-D FOO" > %t.args
+// RUN: %clang -rpath @executable_path/../lib @%t.args %s -### 2>&1 | FileCheck %s
// CHECK: "-D" "FOO"
// CHECK: "-rpath" "@executable_path/../lib"
OpenPOWER on IntegriCloud