summaryrefslogtreecommitdiff
path: root/test/Makefile
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
commit4741c701a47784fa059e04b834d1174b5022879b (patch)
treeaa00c7c0d910ccc2e2624b3307fa97d637827040 /test/Makefile
parentd164d3d9e74aa099ce7ef86ac0724fe504f7c3f9 (diff)
downloadllvm-4741c701a47784fa059e04b834d1174b5022879b.tar.gz
llvm-4741c701a47784fa059e04b834d1174b5022879b.tar.bz2
llvm-4741c701a47784fa059e04b834d1174b5022879b.tar.xz
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105610 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 3750fdb2f1..f816744414 100644
--- a/test/Makefile
+++ b/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