1*0a6a1f1dSLionel Sambuc // Make sure that arguments that begin with @ are left as is in the argument 2*0a6a1f1dSLionel Sambuc // stream, and also that @file arguments continue to be processed. 3*0a6a1f1dSLionel Sambuc 4*0a6a1f1dSLionel Sambuc // RUN: echo "%s -D FOO" > %t.args 5*0a6a1f1dSLionel Sambuc // RUN: %clang -rpath @executable_path/../lib @%t.args -### 2>&1 | FileCheck %s 6*0a6a1f1dSLionel Sambuc // CHECK: "-D" "FOO" 7*0a6a1f1dSLionel Sambuc // CHECK: "-rpath" "@executable_path/../lib" 8