From: Jim Meyering Date: Mon, 24 Nov 2008 09:03:25 +0000 (+0100) Subject: tests: avoid failure of cp/link-heap on some systems X-Git-Tag: v7.1~116 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b5b3690d069b0bd4a1d561a8c1b527768d067b5d;p=thirdparty%2Fcoreutils.git tests: avoid failure of cp/link-heap on some systems * tests/cp/link-heap: Raise virtual memory limit from 10,000 to 14,000, to avoid failure on Debian/unstable (libc6 2.7-16). --- diff --git a/tests/cp/link-heap b/tests/cp/link-heap index b20c7d3b14..7aa142db92 100755 --- a/tests/cp/link-heap +++ b/tests/cp/link-heap @@ -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