X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/3685f84d8c0abfbddd12e034561e5f3fe8cbf2eb..0b45b6e5de1ba4224ced67a9952e009d0f4139a0:/test/integration/run-tests?ds=sidebyside diff --git a/test/integration/run-tests b/test/integration/run-tests index f2a266139..78f24fbaf 100755 --- a/test/integration/run-tests +++ b/test/integration/run-tests @@ -83,12 +83,13 @@ PASS=0 ALL=0 FAILED_TESTS="" DIR="$(readlink -f "$(dirname "$0")")" -TESTLIST="$(run-parts --list "$DIR" --regex '^test-.*$')" +cd "$DIR" +TESTLIST="$(find . -mindepth 1 -maxdepth 1 -regex '^\./test-[^/]*$' | sort)" if [ -n "$APT_TEST_JOBS" ]; then if [ "$MSGCOLOR" != 'NO' ]; then export MSGCOLOR='ALWAYS' fi - exec parallel -j "$APT_TEST_JOBS" "$0" -- $(echo "$TESTLIST") + exec parallel -j "$APT_TEST_JOBS" "./$(basename "$0")" -- $(echo "$TESTLIST") fi TOTAL="$(echo "$TESTLIST" | wc -l)" for testcase in $TESTLIST; do