From: Junio C Hamano Date: Mon, 9 May 2016 19:37:01 +0000 (-0700) Subject: test-lib-functions.sh: rewrite test_seq without Perl X-Git-Tag: v2.9.0-rc0~31^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4df4313532dae11529c7d635e99d67e45dc7777f;p=thirdparty%2Fgit.git test-lib-functions.sh: rewrite test_seq without Perl Rewrite the 'seq' imitation using only commands and features that are typically found built into modern POSIX shells, instead of relying on Perl to run a single-liner script. Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 39b815163d..9734e32222 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -679,7 +679,12 @@ test_seq () { 2) ;; *) error "bug in the test script: not 1 or 2 parameters to test_seq" ;; esac - perl -le 'print for $ARGV[0]..$ARGV[1]' -- "$@" + test_seq_counter__=$1 + while test "$test_seq_counter__" -le "$2" + do + echo "$test_seq_counter__" + test_seq_counter__=$(( $test_seq_counter__ + 1 )) + done } # This function can be used to schedule some commands to be run