Add more virtual memory to lit. The python in x86-64 fedora 13 needs it to run
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 8 Jun 2010 16:17:58 +0000 (16:17 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 8 Jun 2010 16:17:58 +0000 (16:17 +0000)
the llvm tests :-(
It was failing with

-- Testing: 5324 tests, 8 threads --
Fatal Python error: PyEval_AcquireThread: NULL new thread state

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105610 91177308-0d34-0410-b5e6-96231b3b80d8

test/Makefile

index 3750fdb2f1d093e7c31057abd4c3f01a0d94b640..f816744414643532a5f5b7c268193d44c77e5432 100644 (file)
@@ -84,7 +84,8 @@ else # !SunOS
 ifeq ($(HOST_OS),AuroraUX)
 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
 else # !AuroraUX
-ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ;
+# Fedora 13 x86-64 python fails with -v 51200
+ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 768000 ;
 endif # AuroraUX
 endif # SunOS