diff options
author | Stefan Beller <sbeller@google.com> | 2015-01-21 18:32:06 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-01-21 23:27:10 -0800 |
commit | a56b28cc4030cf49990253d85dfc70d47a657a73 (patch) | |
tree | 3302b5780da6e4a330528157ebb2897a06f77aeb | |
parent | 7f99d24b8a318d63a6db7ff5c4f3ac9a52d95ea9 (diff) | |
download | git-a56b28cc4030cf49990253d85dfc70d47a657a73.tar.gz |
t7004: rename ULIMIT test prerequisite to ULIMIT_STACK_SIZE
During creation of the patch series our discussion we could have a
more descriptive name for the prerequisite for the test so it stays
unique when other limits of ulimit are introduced.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t7004-tag.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index 796e9f79ea..06b8e0def1 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -1463,10 +1463,10 @@ run_with_limited_stack () { (ulimit -s 128 && "$@") } -test_lazy_prereq ULIMIT 'run_with_limited_stack true' +test_lazy_prereq ULIMIT_STACK_SIZE 'run_with_limited_stack true' # we require ulimit, this excludes Windows -test_expect_success ULIMIT '--contains works in a deep repo' ' +test_expect_success ULIMIT_STACK_SIZE '--contains works in a deep repo' ' >expect && i=1 && while test $i -lt 8000 |