summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2014-07-14 16:03:13 +0000
committerKostya Serebryany <kcc@google.com>2014-07-14 16:03:13 +0000
commit466c8ac3bd0ad0c84a4c86db0b1406c935954e65 (patch)
tree7748f8ff2cd3732707fe6b05e63ced58ce9a4fcc
parent905d49a568a55c5c5b3f4e63906dd8000fe37632 (diff)
downloadcompiler-rt-466c8ac3bd0ad0c84a4c86db0b1406c935954e65.tar.gz
[tsan] honour XFAIL in tsan/test_output.sh
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@212952 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xtest/tsan/test_output.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/tsan/test_output.sh b/test/tsan/test_output.sh
index 8b286f413..f5b75ed4c 100755
--- a/test/tsan/test_output.sh
+++ b/test/tsan/test_output.sh
@@ -48,6 +48,10 @@ if [ "$1" == "" ]; then
echo SKIPPING $c -- requires TSAN_OPTIONS
continue
fi
+ if [ "`grep "XFAIL" $c`" ]; then
+ echo SKIPPING $c -- has XFAIL
+ continue
+ fi
COMPILER=$CXX
case $c in
*.c) COMPILER=$CC