From: Jim Meyering Date: Tue, 18 Sep 2012 21:05:42 +0000 (+0200) Subject: tests: cp/link-heap: avoid new failure on rawhide X-Git-Tag: v8.20~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87af2e09225c9cf4a639736f0d82f16be6ec6707;p=thirdparty%2Fcoreutils.git tests: cp/link-heap: avoid new failure on rawhide * tests/cp/link-heap.sh: Increase virtual memory limit by 2000KiB -- from 20,000 to 22,000 KiB -- to avoid a new failure on rawhide. --- diff --git a/tests/cp/link-heap.sh b/tests/cp/link-heap.sh index d243c81547..a6c4eee061 100755 --- a/tests/cp/link-heap.sh +++ b/tests/cp/link-heap.sh @@ -31,6 +31,7 @@ cp -al $a $b || framework_failure_ mkdir e || framework_failure_ mv $a $b e || framework_failure_ -(ulimit -v 20000; cp -al e f) || fail=1 +# Increased from 20000 to 22000 in 2012, for pre-F18 rawhide. +(ulimit -v 22000; cp -al e f) || fail=1 Exit $fail