Add a REQUIRES: darwin line for a mac test.

This test, apparently for macs, fails on Windows as lit can't emulate
the shell subprocess $(which...) correctly. Some other netbsd and linux
buildbots also fail here. Limit to macs as a temporary workaround.

llvm-svn: 351360
This commit is contained in:
Jeremy Morse 2019-01-16 17:41:29 +00:00
parent 081194d9fa
commit 4cd59e0f77
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@
// RUN: cp $(which clang-check) %t/mock-libcxx/bin/
// RUN: cp "%s" "%t/test.cpp"
// RUN: %t/mock-libcxx/bin/clang-check -p "%t" "%t/test.cpp" -- -stdlib=libc++ -target x86_64-apple-darwin
// REQUIRES: system-darwin
#include <mock_vector>
vector v;