This reverts r363985 (git commit
d5f16d6cfccc4b0b13b6c01d16c673886d53e695)
This test can't use printf on Windows because the path contains
backslashes which must not be interpreted as escapes by printf.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@364089
91177308-0d34-0410-b5e6-
96231b3b80d8
-// 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
// CHECK: "-I" "{{.*}}\\Inputs\\cl-response-file\\" "-D" "FOO=2"