diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-10 09:28:45 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-13 17:25:39 +0200 |
commit | 11ccbdab27fc7b4f3c78e8a806745330534670f7 (patch) | |
tree | 323020a41a223ef1155e242daba6223d2f9e1d54 /tests/cp/link-heap | |
parent | f43f02865253e1cca210cc588269f5acf755259f (diff) | |
download | coreutils-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/cp/link-heap')
-rwxr-xr-x | tests/cp/link-heap | 2 |
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 |