]> git.saurik.com Git - apt.git/blobdiff - test/integration/run-tests
replace run-parts with find|sort to avoid debianutils usage
[apt.git] / test / integration / run-tests
index f2a2661397f0ca2cc70ca445933fe8d321cc3f57..89c3a10e7eaf98227ce5e50d4674e9ace8f7527d 100755 (executable)
@@ -83,7 +83,7 @@ PASS=0
 ALL=0
 FAILED_TESTS=""
 DIR="$(readlink -f "$(dirname "$0")")"
-TESTLIST="$(run-parts --list "$DIR" --regex '^test-.*$')"
+TESTLIST="$(find "$DIR" -mindepth 1 -maxdepth 1 -regex '^.*/test-[^/]*$' | sort)"
 if [ -n "$APT_TEST_JOBS" ]; then
        if [ "$MSGCOLOR" != 'NO' ]; then
                export MSGCOLOR='ALWAYS'