mirror of
https://github.com/git/git.git
synced 2024-10-30 05:47:53 +01:00
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 <gitster@pobox.com>
This commit is contained in:
parent
55672a39b4
commit
4df4313532
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue