xref: /minix3/external/bsd/llvm/dist/clang/test/Driver/at_file_missing.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
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 
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"
8