1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 02:36:16 +02:00

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.
This commit is contained in:
Jim Meyering
2012-09-18 23:05:42 +02:00
parent 9228b861cc
commit 87af2e0922

View File

@@ -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