blob: 30e16fe832a8c7ab758a48a03736bfc1ee31fdf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# tests run with -j4 per default effectively killing build slaves,
# forcing single threaded execution of tests
eval "$(
declare -f build | \
sed "
s/make /make EXTRATESTOPTS='-j 1' /
"
)"
eval "$(
declare -f check | \
sed "
s/ -m test.regrtest/ -m test.regrtest -j1/
"
)"
|