summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-08-10 09:28:45 +0200
committerJim Meyering <meyering@redhat.com>2009-08-13 17:25:39 +0200
commit11ccbdab27fc7b4f3c78e8a806745330534670f7 (patch)
tree323020a41a223ef1155e242daba6223d2f9e1d54 /tests
parentf43f02865253e1cca210cc588269f5acf755259f (diff)
downloadcoreutils-11ccbdab27fc7b4f3c78e8a806745330534670f7.tar.xz
tests: raise ulimit virt-mem limit to avoid new failure
* tests/cp/link-heap: Raise limit from 16MB to ~20MB, to avoid spurious failure on rawhide.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/cp/link-heap2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cp/link-heap b/tests/cp/link-heap
index 243321786..d9379b52e 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 16000; cp -al e f) || fail=1
+(ulimit -v 20000; cp -al e f) || fail=1
Exit $fail