summaryrefslogtreecommitdiff
path: root/tests/cp
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-09-18 23:05:42 +0200
committerJim Meyering <meyering@redhat.com>2012-09-18 23:05:42 +0200
commit87af2e09225c9cf4a639736f0d82f16be6ec6707 (patch)
tree6e1cfb2ac8c65c0bbb3242879cad674a0513b360 /tests/cp
parent9228b861cc230667e069f3c573150a014c6512ad (diff)
downloadcoreutils-87af2e09225c9cf4a639736f0d82f16be6ec6707.tar.xz
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.
Diffstat (limited to 'tests/cp')
-rwxr-xr-xtests/cp/link-heap.sh3
1 files changed, 2 insertions, 1 deletions
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