]> git.saurik.com Git - apt.git/blobdiff - test/integration/run-tests
randomize acquire order for same type index files
[apt.git] / test / integration / run-tests
index 78f24fbaf024e8f52784b80868fc8258f6e1ef75..fad249994dd6b434bb68fcca95407f281d78090a 100755 (executable)
@@ -89,7 +89,11 @@ if [ -n "$APT_TEST_JOBS" ]; then
        if [ "$MSGCOLOR" != 'NO' ]; then
                export MSGCOLOR='ALWAYS'
        fi
-       exec parallel -j "$APT_TEST_JOBS" "./$(basename "$0")" -- $(echo "$TESTLIST")
+       parallel=parallel
+       if command -v moreutils-parallel >/dev/null 2>&1; then
+               parallel=moreutils-parallel
+       fi
+       exec $parallel -j "$APT_TEST_JOBS" "./$(basename "$0")" -- $(echo "$TESTLIST")
 fi
 TOTAL="$(echo "$TESTLIST" | wc -l)"
 for testcase in $TESTLIST; do