Parallelize unit test execution
This commit is contained in:
parent
bb626649eb
commit
b3285b3bc2
2 changed files with 20 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ sudo: true
|
|||
install:
|
||||
- echo "deb http://de.archive.ubuntu.com/ubuntu xenial main restricted universe multiverse" | sudo tee -a /etc/apt/sources.list
|
||||
- sudo apt-get update
|
||||
- sudo apt-get install --allow-unauthenticated g++ libboost-all-dev cmake libreadline-dev libssl-dev autoconf
|
||||
- sudo apt-get install --allow-unauthenticated g++ libboost-all-dev cmake libreadline-dev libssl-dev autoconf parallel
|
||||
|
||||
addons:
|
||||
sonarcloud:
|
||||
|
|
@ -22,7 +22,7 @@ script:
|
|||
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS=--coverage -DCMAKE_CXX_FLAGS=--coverage -DBoost_USE_STATIC_LIBS=OFF -DCMAKE_CXX_OUTPUT_EXTENSION_REPLACE=ON .
|
||||
- 'which build-wrapper-linux-x86-64 && build-wrapper-linux-x86-64 --out-dir bw-output make -j 2 || make -j 2'
|
||||
- set -o pipefail
|
||||
- tests/all_tests 2>&1 | cat
|
||||
- tests/run-parallel-tests.sh tests/all_tests
|
||||
- "tests/api 2>&1 | grep -vE 'callback result 9|remote_calc->add. 4, 5 .: 9|set callback|] \\.$'"
|
||||
- tests/bip_lock 2>&1 | cat
|
||||
- tests/hmac_test 2>&1 | cat
|
||||
|
|
|
|||
18
tests/run-parallel-tests.sh
Executable file
18
tests/run-parallel-tests.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$#" != 1 ]; then
|
||||
echo "Usage: $0 <boost-unit-test-executable>" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
"$1" --list_content 2>&1 \
|
||||
| grep '\*$' \
|
||||
| sed 's=\*$==;s=^ =/=' \
|
||||
| while read t; do
|
||||
case "$t" in
|
||||
/*) echo "$pre$t"; ;;
|
||||
*) pre="$t"; ;;
|
||||
esac
|
||||
done \
|
||||
| parallel echo Running {}\; "$1" -t {}
|
||||
|
||||
Loading…
Reference in a new issue