Skip to content

Commit

Permalink
Build crttest and cpptest separately. (apache#6057)
Browse files Browse the repository at this point in the history
* Build crttest and cpptest separately.

 * Try to fix random CI crashing, likely caused by concurrent cmake execution.

* Revert to -j8
  • Loading branch information
areusch authored and Trevor Morris committed Aug 26, 2020
1 parent 67514f2 commit ec9d297
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/scripts/task_cpp_unittest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export OMP_NUM_THREADS=1
# Remove existing testcases
rm -f build/*_test

make crttest cpptest -j3
make cpptest -j8
make crttest -j8
for test in build/*_test; do
./$test
done

0 comments on commit ec9d297

Please sign in to comment.