chiark / gitweb /
test suite: gpg-agent workaround: Send ps output to stderr (oops)
[dgit.git] / tests / run-all
index c6df386ee9be4d81e7849a15d997dc076d7b0393..f72b9fae7d0958d490213027070c2736da87bc98 100755 (executable)
@@ -5,14 +5,17 @@ set -e
 
 set -o pipefail
 
-set +e
-jcpus=`perl -MSys::CPU -we 'printf "-j%d\n",Sys::CPU::cpu_count()'`
-set -e
+ncpus=$(nproc || echo 1)
+jcpus=-j$(( ncpus * 134 / 100 ))
 
 if [ $# != 0 ]; then
        set TESTSCRIPTS="$*"
 fi
 
+mkdir -p tests/tmp
+
+export DGIT_GNUPG_STUNT_ERRLOG=$( tty -s ||: )
+
 (
  set -x
  exec make $jcpus -k -f tests/Makefile "$@"