Increase the CPU time timeout for testing from 10 to 20 minutes, to
authorDimitry Andric <dimitry@andric.com>
Fri, 13 Feb 2015 19:45:19 +0000 (19:45 +0000)
committerDimitry Andric <dimitry@andric.com>
Fri, 13 Feb 2015 19:45:19 +0000 (19:45 +0000)
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

index 7f253b066256467b8e071e4ea2ffb20b0456fdd4..d9e90a3c8c3fa03840fd871129d18c1ffba9dfac 100644 (file)
@@ -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