[llvm-commits] [test-suite] r53847 - /test-suite/trunk/RunSafely.sh

Nick Lewycky nicholas at mxc.ca
Mon Jul 21 00:10:53 PDT 2008


Author: nicholas
Date: Mon Jul 21 02:10:53 2008
New Revision: 53847

URL: http://llvm.org/viewvc/llvm-project?rev=53847&view=rev
Log:
Raise the virtual memory limit by 50MB to 250MB. This allows Obsequi to pass
on my Linux box. (225MB is not enough for JIT, 200MB fails both JIT and LLC).

Modified:
    test-suite/trunk/RunSafely.sh

Modified: test-suite/trunk/RunSafely.sh
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/RunSafely.sh?rev=53847&r1=53846&r2=53847&view=diff

==============================================================================
--- test-suite/trunk/RunSafely.sh (original)
+++ test-suite/trunk/RunSafely.sh Mon Jul 21 02:10:53 2008
@@ -82,8 +82,8 @@
     # of files being output by the tests. 10 MB should be enough for anybody. ;)
     ULIMITCMD="$ULIMITCMD ulimit -f 10485760;"
 
-    # virtual memory: 200 MB should be enough for anybody. ;)
-    ULIMITCMD="$ULIMITCMD ulimit -v 200000;"
+    # virtual memory: 250 MB should be enough for anybody. ;)
+    ULIMITCMD="$ULIMITCMD ulimit -v 250000;"
 esac
 rm -f core core.*
 





More information about the llvm-commits mailing list