summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-06-08 16:17:58 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-06-08 16:17:58 +0000
commitefac7f5e909e7c1a5867f90cb48bd92a12cab448 (patch)
tree9df3d0416ac89447e5e1eb59daddd17b948758e3
parentcc5de097a6c464eb544c129921e202a2820ea4f1 (diff)
downloadbcm5719-llvm-efac7f5e909e7c1a5867f90cb48bd92a12cab448.tar.gz
bcm5719-llvm-efac7f5e909e7c1a5867f90cb48bd92a12cab448.zip
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 llvm-svn: 105610
-rw-r--r--llvm/test/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/Makefile b/llvm/test/Makefile
index 3750fdb2f1d..f8167444146 100644
--- a/llvm/test/Makefile
+++ b/llvm/test/Makefile
@@ -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
OpenPOWER on IntegriCloud