diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-08-24 12:05:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-24 12:05:24 -0700 |
commit | c247d76c5419df96db62f6e7c9cf4f672f24a727 (patch) | |
tree | 6a6a845bf33526fe5b4250d39944ae08bdf8fb15 /t/t5551-http-fetch.sh | |
parent | Merge branch 'lp/no-cmd-http-fetch' into maint-1.7.11 (diff) | |
parent | tests: Introduce test_seq (diff) | |
download | tgif-c247d76c5419df96db62f6e7c9cf4f672f24a727.tar.xz |
Merge branch 'mk/test-seq' into maint-1.7.11
Add a compatibility/utility function to the test framework.
* mk/test-seq:
tests: Introduce test_seq
Diffstat (limited to 't/t5551-http-fetch.sh')
-rwxr-xr-x | t/t5551-http-fetch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5551-http-fetch.sh b/t/t5551-http-fetch.sh index fadf2f258e..91eaf53d1d 100755 --- a/t/t5551-http-fetch.sh +++ b/t/t5551-http-fetch.sh @@ -114,7 +114,7 @@ test -n "$GIT_TEST_LONG" && test_set_prereq EXPENSIVE test_expect_success EXPENSIVE 'create 50,000 tags in the repo' ' ( cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" && - for i in `seq 50000` + for i in `test_seq 50000` do echo "commit refs/heads/too-many-refs" echo "mark :$i" |