chiark / gitweb /
test suite: run-all: Move setting of TESTSCRIPTS
[dgit.git] / tests / run-all
index e1718fa991944b89107b8eff20820cb93aa714a8..b18822304ae04d6712dfcc57b11d7d4f7ceabfb7 100755 (executable)
@@ -17,12 +17,18 @@ done
 ncpus=$(nproc || echo 1)
 jcpus=-j$(( ncpus * 134 / 100 ))
 
-if [ $# != 0 ]; then
-       set TESTSCRIPTS="$*"
+if [ "x$DGIT_TESTS_TMPDIR" != x ]; then
+       tmpdir="$PWD"
+       tmpdir="${tmpdir#/}"
+       tmpdir="${tmpdir//!/!#!}"
+       tmpdir="${tmpdir//\//!}"
+       tmpdir="$DGIT_TESTS_TMPDIR/$tmpdir"
+       rm -f tests/tmp
+       ln -ns -- "$tmpdir" tests/tmp
+else
+       tmpdir=tests/tmp
 fi
 
-tmpdir=tests/tmp
-
 case "$DGIT_TESTS_PROGRESSIVE" in
 ''|n)
        rm -rf -- "$tmpdir"
@@ -31,6 +37,9 @@ esac
 
 mkdir -p -- "$tmpdir"
 
+if [ $# != 0 ]; then
+       set TESTSCRIPTS="$*"
+fi
 
 export DGIT_GNUPG_STUNT_ERRLOG=$( tty -s ||: )