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

tests: avoid false-positive cp/link-heap failure

* tests/cp/link-heap: Increase address space limit from 14000KB
to 16000KB, to avoid failure with Debian unstable's libc6-dev-2.9-19
This commit is contained in:
Jim Meyering
2009-07-09 15:50:21 +02:00
parent a9461064b8
commit 68149832bd

View File

@@ -36,6 +36,6 @@ mkdir e || framework_failure
mv $a $b e || framework_failure
fail=0
(ulimit -v 14000; cp -al e f) || fail=1
(ulimit -v 16000; cp -al e f) || fail=1
Exit $fail