[llvm-commits] [llvm] r105610 - /llvm/trunk/test/Makefile
Rafael Espindola
rafael.espindola at gmail.com
Tue Jun 8 09:17:58 PDT 2010
Author: rafael
Date: Tue Jun 8 11:17:58 2010
New Revision: 105610
URL: http://llvm.org/viewvc/llvm-project?rev=105610&view=rev
Log:
Add more virtual memory to lit. The python in x86-64 fedora 13 needs it to run
the llvm tests :-(
It was failing with
-- Testing: 5324 tests, 8 threads --
Fatal Python error: PyEval_AcquireThread: NULL new thread state
Modified:
llvm/trunk/test/Makefile
Modified: llvm/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Makefile?rev=105610&r1=105609&r2=105610&view=diff
==============================================================================
--- llvm/trunk/test/Makefile (original)
+++ llvm/trunk/test/Makefile Tue Jun 8 11:17:58 2010
@@ -84,7 +84,8 @@
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
More information about the llvm-commits
mailing list