From 95c105ea454b8642587a5669494ae92ab188a270 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Fri, 13 Feb 2015 19:45:19 +0000 Subject: [PATCH] Increase the CPU time timeout for testing from 10 to 20 minutes, to compensate for slow machines, and the growing number of tests. Prodded by: Hans Wennborg git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229143 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 7f253b06625..d9e90a3c8c3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -85,13 +85,13 @@ endif # just removing them here won't work. # Solaris does not have the -m flag for ulimit ifeq ($(HOST_OS),SunOS) -ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ; +ULIMIT=ulimit -t 1200 ; ulimit -d 512000 ; ulimit -v 512000 ; else # !SunOS # Newer versions of python try to allocate an insane amount of address space for # its thread-local storage, don't set a limit here. # When -v is not used, then -s has to be used to limit the stack size. # FIXME: Those limits should be enforced by lit instead of globally. -ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -s 8192 ; +ULIMIT=ulimit -t 1200 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -s 8192 ; endif # SunOS check-local:: lit.site.cfg Unit/lit.site.cfg -- 2.34.1