tests: avoid failure of cp/link-heap on some systems
authorJim Meyering <meyering@redhat.com>
Mon, 24 Nov 2008 09:03:25 +0000 (10:03 +0100)
committerJim Meyering <meyering@redhat.com>
Sun, 30 Nov 2008 18:15:51 +0000 (19:15 +0100)
* tests/cp/link-heap: Raise virtual memory limit from 10,000
to 14,000, to avoid failure on Debian/unstable (libc6 2.7-16).

tests/cp/link-heap

index b20c7d3..7aa142d 100755 (executable)
@@ -36,6 +36,6 @@ mkdir e || framework_failure
 mv $a $b e || framework_failure
 
 fail=0
-(ulimit -v 10000; cp -al e f) || fail=1
+(ulimit -v 14000; cp -al e f) || fail=1
 
 Exit $fail