From b5b3690d069b0bd4a1d561a8c1b527768d067b5d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 24 Nov 2008 10:03:25 +0100 Subject: [PATCH] tests: avoid failure of cp/link-heap on some systems * tests/cp/link-heap: Raise virtual memory limit from 10,000 to 14,000, to avoid failure on Debian/unstable (libc6 2.7-16). --- tests/cp/link-heap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cp/link-heap b/tests/cp/link-heap index b20c7d3b14..7aa142db92 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 10000; cp -al e f) || fail=1 +(ulimit -v 14000; cp -al e f) || fail=1 Exit $fail -- 2.47.3