summaryrefslogtreecommitdiff
path: root/t/test-lib-functions.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-05-09 19:37:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-05-09 21:21:57 (GMT)
commit4df4313532dae11529c7d635e99d67e45dc7777f (patch)
tree29384483559186e6fbcf6aa3c6c63954263f9105 /t/test-lib-functions.sh
parent55672a39b4e0f82e6f997879724ea37ca7e0d765 (diff)
downloadgit-4df4313532dae11529c7d635e99d67e45dc7777f.zip
git-4df4313532dae11529c7d635e99d67e45dc7777f.tar.gz
git-4df4313532dae11529c7d635e99d67e45dc7777f.tar.bz2
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>
Diffstat (limited to 't/test-lib-functions.sh')
-rw-r--r--t/test-lib-functions.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index 39b8151..9734e32 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