You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
326 B
8 lines
326 B
4 months ago
|
// 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 "-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"
|