From 87af2e09225c9cf4a639736f0d82f16be6ec6707 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 18 Sep 2012 23:05:42 +0200 Subject: 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. --- tests/cp/link-heap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/cp') diff --git a/tests/cp/link-heap.sh b/tests/cp/link-heap.sh index d243c8154..a6c4eee06 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 -- cgit v1.2.3-54-g00ecf