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.
11 lines
362 B
11 lines
362 B
// Test that we use the Windows tokenizer for clang-cl response files. The
|
|
// trailing backslash before the space should be interpreted as a literal
|
|
// backslash. PR23709
|
|
|
|
|
|
|
|
// RUN: echo '/I%S\Inputs\cl-response-file\ /DFOO=2' > %t.rsp
|
|
// RUN: %clang_cl /c -### @%t.rsp -- %s 2>&1 | FileCheck %s
|
|
|
|
// CHECK: "-I" "{{.*}}\\Inputs\\cl-response-file\\" "-D" "FOO=2"
|