11 lines · c
1// Test that we use the Windows tokenizer for clang-cl response files. The2// trailing backslash before the space should be interpreted as a literal3// backslash. PR237094 5 6 7// RUN: printf '%%s\n' '/I%S\Inputs\cl-response-file\ /DFOO=2' > %t.rsp8// RUN: %clang_cl /c -### @%t.rsp -- %s 2>&1 | FileCheck %s9 10// CHECK: "-I" "{{.*}}\\Inputs\\cl-response-file\\" "-D" "FOO=2"11