]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tests: cp/link-heap: avoid new failure on rawhide
authorJim Meyering <meyering@redhat.com>
Tue, 18 Sep 2012 21:05:42 +0000 (23:05 +0200)
committerJim Meyering <meyering@redhat.com>
Tue, 18 Sep 2012 21:05:42 +0000 (23:05 +0200)
* 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.

tests/cp/link-heap.sh

index d243c81547df3596d8e4446379b8d11897bdf1c1..a6c4eee0615caee55dc70be90caff89b8a491939 100755 (executable)
@@ -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