diff options
Diffstat (limited to 'engine/tests/suite.php')
-rwxr-xr-x | engine/tests/suite.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engine/tests/suite.php b/engine/tests/suite.php index 8bb7d8064..1f6ca61ff 100755 --- a/engine/tests/suite.php +++ b/engine/tests/suite.php @@ -1,7 +1,7 @@ <?php /** * Runs unit tests. - * + * * @package Elgg * @subpackage Test * @author Curverider Ltd @@ -19,6 +19,10 @@ require_once("$vendor_path/mock_objects.php"); require_once("$vendor_path/reporter.php"); require_once("$test_path/elgg_unit_test.php"); +// Disable maximum execution time. +// Tests take a while... +set_time_limit(0); + $suite = new TestSuite('Elgg Core Unit Tests'); // emit a hook to pull in all tests |