Home | History | Annotate | Download | only in Tooling
      1 // RUN: rm -rf %t
      2 // RUN: mkdir -p %t/abc/def/ijk/qwe
      3 // RUN: echo "[{\"directory\":\".\",\"command\":\"clang++ -c %t/abc/def/ijk/qwe/test.cpp\",\"file\":\"%t/abc/def/ijk/qwe/test.cpp\"}]" | sed -e 's/\\/\\\\/g' > %t/compile_commands.json
      4 // RUN: cp "%s" "%t/abc/def/ijk/qwe/test.cpp"
      5 // RUN: ln -sf %t/abc/def %t/abc/def2
      6 // RUN: cd %t/abc/def2
      7 // RUN: not env PWD="%t/abc/def" clang-check "ijk/qwe/test.cpp" 2>&1 | FileCheck %s
      8 
      9 // CHECK: C++ requires
     10 // CHECK: /abc/def/ijk/qwe/test.cpp
     11 invalid;
     12 
     13 // REQUIRES: shell
     14