tsan: run tests sequentially otherwise cmake says:

make[3]: make[3]: /bin/sh: ../../../../../bin/clang: Text file busy

llvm-svn: 180183
This commit is contained in:
Dmitry Vyukov 2013-04-24 11:07:25 +00:00
parent beaf786151
commit 7a8535d2f2
1 changed files with 3 additions and 2 deletions

View File

@ -7,5 +7,6 @@ mkdir -p $ROOT/build
cd $ROOT/build
CC=clang CXX=clang++ cmake -DLLVM_ENABLE_WERROR=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=ON $ROOT/../../../..
make -j64
make check-sanitizer check-tsan check-asan -j64
make check-sanitizer -j64
make check-tsan -j64
make check-asan -j64