From: Jim Meyering Date: Sun, 5 Aug 2012 14:10:09 +0000 (+0200) Subject: tests: printf-surprise: avoid unwarranted failure on FreeBSD 9.0 X-Git-Tag: v8.18~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47583adceda8c9ad5f52805b7af3683179e0b4a6;p=thirdparty%2Fcoreutils.git tests: printf-surprise: avoid unwarranted failure on FreeBSD 9.0 * tests/misc/printf-surprise: A VM size of 10,000KiB was too little in which to run "env printf ..." on FreeBSD 9.0-p3. Increase it to 15,000. --- diff --git a/tests/misc/printf-surprise b/tests/misc/printf-surprise index d15987bce8..b6f6275983 100755 --- a/tests/misc/printf-surprise +++ b/tests/misc/printf-surprise @@ -55,7 +55,10 @@ mkfifo_or_skip_ fifo export MALLOC_PERTURB_=0 head -c 10 fifo > out & -( ulimit -v 10000; env $prog %20000000f 0 2>err-msg > fifo ) + +# Choosing the virtual memory limit, 11000 is enough, but 10000 is too +# little and provokes a "memory exhausted" diagnostic on FreeBSD 9.0-p3. +( ulimit -v 15000; env $prog %20000000f 0 2>err-msg > fifo ) exit=$? # Map this longer, and rarer, diagnostic to the common one.