blob: 0189a8bb7571bed12ee3d673c8e1be6ead737a88 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// 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
4// RUN: echo "%s -D FOO" > %t.args
5// RUN: %clang -rpath @executable_path/../lib @%t.args -### 2>&1 | FileCheck %s
6// CHECK: "-D" "FOO"
7// CHECK: "-rpath" "@executable_path/../lib"