[TSan] Fix custom scripts that validate TSan on non-standard buildbot.

llvm-svn: 253682
This commit is contained in:
Alexey Samsonov 2015-11-20 18:13:03 +00:00
parent fad356c4ac
commit 3e49a7bc32
2 changed files with 11 additions and 1 deletions

View File

@ -22,7 +22,13 @@ for f in write1; do
check $f pop 2 check $f pop 2
done done
for f in write2 write4 write8; do for f in write2 write4; do
check $f rsp 1
check $f push 4
check $f pop 4
done
for f in write8; do
check $f rsp 1 check $f rsp 1
check $f push 3 check $f push 3
check $f pop 3 check $f pop 3

View File

@ -48,6 +48,10 @@ if [ "$1" == "" ]; then
echo SKIPPING $c -- requires TSAN_OPTIONS echo SKIPPING $c -- requires TSAN_OPTIONS
continue continue
fi fi
if [ "`grep "env_tsan_opts" $c`" ]; then
echo SKIPPING $c -- requires TSAN_OPTIONS
continue
fi
if [ "`grep "XFAIL" $c`" ]; then if [ "`grep "XFAIL" $c`" ]; then
echo SKIPPING $c -- has XFAIL echo SKIPPING $c -- has XFAIL
continue continue