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

Lauro Ramos Venancio lauro.venancio at gmail.com
Fri Feb 15 09:00:34 PST 2008


Author: laurov
Date: Fri Feb 15 11:00:33 2008
New Revision: 47159

URL: http://llvm.org/viewvc/llvm-project?rev=47159&view=rev
Log:
Limit virtual memory instead of stack size.


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=47159&r1=47158&r2=47159&view=diff

==============================================================================
--- test-suite/trunk/RunSafely.sh (original)
+++ test-suite/trunk/RunSafely.sh Fri Feb 15 11:00:33 2008
@@ -82,8 +82,8 @@
     # files being output by the tests. 10 MB should be enough for anybody. ;)
     ULIMITCMD="$ULIMITCMD ulimit -f 10485760;"
 
-    # stack size: 100 MB should be enough for anybody. ;)
-    ULIMITCMD="$ULIMITCMD ulimit -s 100000;"
+    # virtual memory: 200 MB should be enough for anybody. ;)
+    ULIMITCMD="$ULIMITCMD ulimit -v 200000;"
 esac
 rm -f core core.*
 





More information about the llvm-commits mailing list