From 6e98a28f94c123f50558262abe1d995b09c25978 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 29 Jan 2013 10:49:13 +0100 Subject: [PATCH] raise PHPUnit default timeouts default .. 2s -> 10s medium ... 10s -> 30s I originally thought that using PHPUnit timeout system was a good idea but that is causing more harm than being helpful. Now default to ten seconds. Change-Id: If10a9b6df967130838a253d986b2ed623d8e3b0a --- tests/phpunit/suite.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/suite.xml b/tests/phpunit/suite.xml index f286fa1187..56f6447779 100644 --- a/tests/phpunit/suite.xml +++ b/tests/phpunit/suite.xml @@ -8,8 +8,8 @@ convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" - timeoutForSmallTests="2" - timeoutForMediumTests="10" + timeoutForSmallTests="10" + timeoutForMediumTests="30" timeoutForLargeTests="60" strict="true" verbose="true"> -- 2.20.1