diff options
| author | Kostya Serebryany <kcc@google.com> | 2014-07-14 16:03:13 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2014-07-14 16:03:13 +0000 |
| commit | 6cdb0b8051a082b32cea1130f7204ccddda65c10 (patch) | |
| tree | 0cecc51e9f6c744311ffd158b6aeeadaa8445f57 | |
| parent | 850a837cf21b60c3da6fa831090143a502468293 (diff) | |
| download | bcm5719-llvm-6cdb0b8051a082b32cea1130f7204ccddda65c10.tar.gz bcm5719-llvm-6cdb0b8051a082b32cea1130f7204ccddda65c10.zip | |
[tsan] honour XFAIL in tsan/test_output.sh
llvm-svn: 212952
| -rwxr-xr-x | compiler-rt/test/tsan/test_output.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/test/tsan/test_output.sh b/compiler-rt/test/tsan/test_output.sh index 8b286f413bd..f5b75ed4c0b 100755 --- a/compiler-rt/test/tsan/test_output.sh +++ b/compiler-rt/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 |

