From 69d95217783db6a94e119f9bd900aba5db7cde2f Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Mon, 10 Nov 2008 05:06:23 +0000 Subject: [PATCH] No execution time limit on test runner git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@65530 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- dev/TestRunner.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev/TestRunner.php b/dev/TestRunner.php index ad96963fb..fa9742d24 100644 --- a/dev/TestRunner.php +++ b/dev/TestRunner.php @@ -132,6 +132,8 @@ class TestRunner extends Controller { } function runTests($classList, $coverage = false) { + ini_set('max_execution_time', 0); + $this->setUp(); // run tests before outputting anything to the client