Revert [test][Driver] Fix Clang :: Driver/cl-response-file.c

This reverts r363985 (git commit d5f16d6cfc)

This test can't use printf on Windows because the path contains
backslashes which must not be interpreted as escapes by printf.

llvm-svn: 364089
This commit is contained in:
Reid Kleckner 2019-06-21 18:33:20 +00:00
parent 459f733ef0
commit e4956d2ec6
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
// RUN: printf '/I%S\Inputs\\cl-response-file\ /DFOO=2' > %t.rsp // RUN: echo '/I%S\Inputs\cl-response-file\ /DFOO=2' > %t.rsp
// RUN: %clang_cl /c -### @%t.rsp -- %s 2>&1 | FileCheck %s // RUN: %clang_cl /c -### @%t.rsp -- %s 2>&1 | FileCheck %s
// CHECK: "-I" "{{.*}}\\Inputs\\cl-response-file\\" "-D" "FOO=2" // CHECK: "-I" "{{.*}}\\Inputs\\cl-response-file\\" "-D" "FOO=2"