[compiler-rt] r212952 - [tsan] honour XFAIL in tsan/test_output.sh
Kostya Serebryany
kcc at google.com
Mon Jul 14 09:03:13 PDT 2014
Author: kcc
Date: Mon Jul 14 11:03:13 2014
New Revision: 212952
URL: http://llvm.org/viewvc/llvm-project?rev=212952&view=rev
Log:
[tsan] honour XFAIL in tsan/test_output.sh
Modified:
compiler-rt/trunk/test/tsan/test_output.sh
Modified: compiler-rt/trunk/test/tsan/test_output.sh
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/test_output.sh?rev=212952&r1=212951&r2=212952&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/test_output.sh (original)
+++ compiler-rt/trunk/test/tsan/test_output.sh Mon Jul 14 11:03:13 2014
@@ -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
More information about the llvm-commits
mailing list