]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tests: avoid false-positive cp/link-heap failure
authorJim Meyering <meyering@redhat.com>
Thu, 9 Jul 2009 13:50:21 +0000 (15:50 +0200)
committerJim Meyering <meyering@redhat.com>
Thu, 9 Jul 2009 13:50:49 +0000 (15:50 +0200)
* tests/cp/link-heap: Increase address space limit from 14000KB
to 16000KB, to avoid failure with Debian unstable's libc6-dev-2.9-19

tests/cp/link-heap

index 4e93a2e4e48615ce6d3901883f68a303aa38adf1..2433217861b462cfd543b1affbc5b3f13e7304f1 100755 (executable)
@@ -36,6 +36,6 @@ mkdir e || framework_failure
 mv $a $b e || framework_failure
 
 fail=0
-(ulimit -v 14000; cp -al e f) || fail=1
+(ulimit -v 16000; cp -al e f) || fail=1
 
 Exit $fail