Justin Bogner | 9ca8df1 | 2013-12-06 22:57:13 +0000 | [diff] [blame] | 1 | // Make sure that arguments that begin with @ are left as is in the argument |
| 2 | // stream, and also that @file arguments continue to be processed. |
| 3 | |
Nico Weber | 197e5cf | 2016-04-26 20:40:23 +0000 | [diff] [blame^] | 4 | // RUN: echo "-D FOO" > %t.args |
| 5 | // RUN: %clang -rpath @executable_path/../lib @%t.args %s -### 2>&1 | FileCheck %s |
Justin Bogner | 9ca8df1 | 2013-12-06 22:57:13 +0000 | [diff] [blame] | 6 | // CHECK: "-D" "FOO" |
| 7 | // CHECK: "-rpath" "@executable_path/../lib" |