From: Jim Meyering Date: Thu, 9 Jul 2009 13:50:21 +0000 (+0200) Subject: tests: avoid false-positive cp/link-heap failure X-Git-Tag: v7.5~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68149832bd62d0e9c0dc6d4577d9343d0dc9ddbd;p=thirdparty%2Fcoreutils.git tests: avoid false-positive cp/link-heap failure * tests/cp/link-heap: Increase address space limit from 14000KB to 16000KB, to avoid failure with Debian unstable's libc6-dev-2.9-19 --- diff --git a/tests/cp/link-heap b/tests/cp/link-heap index 4e93a2e4e4..2433217861 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 14000; cp -al e f) || fail=1 +(ulimit -v 16000; cp -al e f) || fail=1 Exit $fail