mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 09:56:33 +00:00

Feel free to revert them (or let me know and I will revert) if they shouldn't be. llvm-svn: 177743
12 lines
341 B
C++
12 lines
341 B
C++
// RUN: rm -rf %t
|
|
// RUN: mkdir %t
|
|
// 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/test.cpp" 2>&1 | FileCheck %s
|
|
|
|
// CHECK: C++ requires
|
|
invalid;
|
|
|
|
// REQUIRES: shell
|
|
// XFAIL: win64
|