diff options
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Tooling/clang-check-builtin-headers.cpp | 4 | ||||
-rw-r--r-- | clang/test/Tooling/clang-check-chdir.cpp | 4 | ||||
-rw-r--r-- | clang/test/Tooling/clang-check-pwd.cpp | 3 | ||||
-rw-r--r-- | clang/test/Tooling/clang-check.cpp | 4 |
4 files changed, 7 insertions, 8 deletions
diff --git a/clang/test/Tooling/clang-check-builtin-headers.cpp b/clang/test/Tooling/clang-check-builtin-headers.cpp index 4324dec61b2..fda68ccbc07 100644 --- a/clang/test/Tooling/clang-check-builtin-headers.cpp +++ b/clang/test/Tooling/clang-check-builtin-headers.cpp @@ -1,7 +1,7 @@ // RUN: rm -rf %t // RUN: mkdir %t // Add a path that doesn't exist as argv[0] for the compile command line: -// RUN: echo '[{"directory":".","command":"/random/tool -c %t/test.cpp","file":"%t/test.cpp"}]' > %t/compile_commands.json +// RUN: echo '[{"directory":".","command":"/random/tool -c %t/test.cpp","file":"%t/test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json // RUN: cp "%s" "%t/test.cpp" // RUN: clang-check "%t" "%t/test.cpp" 2>&1|FileCheck %s // FIXME: Make the above easier. @@ -11,5 +11,5 @@ // CHECK: C++ requires invalid; -// FIXME: JSON doesn't like path separator '\', on Win32 hosts. +// FIXME: This is incompatible to -fms-compatibility. // XFAIL: win32 diff --git a/clang/test/Tooling/clang-check-chdir.cpp b/clang/test/Tooling/clang-check-chdir.cpp index 5d02c95fabd..d9f172848b4 100644 --- a/clang/test/Tooling/clang-check-chdir.cpp +++ b/clang/test/Tooling/clang-check-chdir.cpp @@ -2,7 +2,7 @@ // compilation database. // RUN: rm -rf %t // RUN: mkdir %t -// RUN: echo "[{\"directory\":\"%t\",\"command\":\"clang -c test.cpp -I.\",\"file\":\"%t/test.cpp\"}]" > %t/compile_commands.json +// RUN: echo "[{\"directory\":\"%t\",\"command\":\"clang -c test.cpp -I.\",\"file\":\"%t/test.cpp\"}]" | sed -e 's/\\/\//g' > %t/compile_commands.json // RUN: cp "%s" "%t/test.cpp" // RUN: touch "%t/clang-check-test.h" // RUN: clang-check "%t" "%t/test.cpp" 2>&1|FileCheck %s @@ -13,5 +13,5 @@ // CHECK: C++ requires invalid; -// FIXME: JSON doesn't like path separator '\', on Win32 hosts. +// FIXME: This is incompatible to -fms-compatibility. // XFAIL: win32 diff --git a/clang/test/Tooling/clang-check-pwd.cpp b/clang/test/Tooling/clang-check-pwd.cpp index 96417df2795..8dd9e6e926d 100644 --- a/clang/test/Tooling/clang-check-pwd.cpp +++ b/clang/test/Tooling/clang-check-pwd.cpp @@ -1,6 +1,6 @@ // RUN: rm -rf %t // RUN: mkdir %t -// RUN: echo "[{\"directory\":\".\",\"command\":\"clang++ -c %t/test.cpp\",\"file\":\"%t/test.cpp\"}]" > %t/compile_commands.json +// RUN: echo "[{\"directory\":\".\",\"command\":\"clang++ -c %t/test.cpp\",\"file\":\"%t/test.cpp\"}]" | sed -e 's/\\/\\\\/g' > %t/compile_commands.json // RUN: cp "%s" "%t/test.cpp" // RUN: PWD="%t" clang-check "%t" "test.cpp" 2>&1|FileCheck %s // FIXME: Make the above easier. @@ -9,4 +9,3 @@ invalid; // REQUIRES: shell -// XFAIL: mingw32 diff --git a/clang/test/Tooling/clang-check.cpp b/clang/test/Tooling/clang-check.cpp index d197078805d..ff90b884173 100644 --- a/clang/test/Tooling/clang-check.cpp +++ b/clang/test/Tooling/clang-check.cpp @@ -1,6 +1,6 @@ // RUN: rm -rf %t // RUN: mkdir %t -// RUN: echo '[{"directory":".","command":"clang++ -c %t/test.cpp","file":"%t/test.cpp"}]' > %t/compile_commands.json +// RUN: echo '[{"directory":".","command":"clang++ -c %t/test.cpp","file":"%t/test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json // RUN: cp "%s" "%t/test.cpp" // RUN: clang-check "%t" "%t/test.cpp" 2>&1|FileCheck %s // FIXME: Make the above easier. @@ -8,5 +8,5 @@ // CHECK: C++ requires invalid; -// FIXME: JSON doesn't like path separator '\', on Win32 hosts. +// FIXME: This is incompatible to -fms-compatibility. // XFAIL: win32 |