Merge "(bug 35753) Allow {{FORMATNUM}} to only do digit transform"
[lhc/web/wiklou.git] / tests / phpunit / suite.xml
index e6649be..56f6447 100644 (file)
@@ -2,35 +2,47 @@
 
 <!-- colors don't work on Windows! -->
 <phpunit bootstrap="./bootstrap.php"
-         colors="false"
+         colors="true"
          backupGlobals="false"
          convertErrorsToExceptions="true"
          convertNoticesToExceptions="true"
          convertWarningsToExceptions="true"
          stopOnFailure="false"
+                timeoutForSmallTests="10"
+                timeoutForMediumTests="30"
+                timeoutForLargeTests="60"
          strict="true"
                 verbose="true">
        <testsuites>
                <testsuite name="includes">
-                       <directory>./includes</directory>
+                       <directory>includes</directory>
                </testsuite>
                <testsuite name="languages">
-                       <directory>./languages</directory>
+                       <directory>languages</directory>
                </testsuite>
                <testsuite name="skins">
-                       <directory>./skins</directory>
+                       <directory>skins</directory>
+               </testsuite>
+               <!-- As there is a class Maintenance, we cannot use the
+                    name "maintenance" directly -->
+               <testsuite name="maintenance_suite">
+                       <directory>maintenance</directory>
+               </testsuite>
+               <testsuite name="structure">
+                       <file>StructureTest.php</file>
                </testsuite>
                <testsuite name="uploadfromurl">
-                       <file>./suites/UploadFromUrlTestSuite.php</file>
+                       <file>suites/UploadFromUrlTestSuite.php</file>
                </testsuite>
                <testsuite name="extensions">
-                       <file>./suites/ExtensionsTestSuite.php</file>
+                       <file>suites/ExtensionsTestSuite.php</file>
                </testsuite>
        </testsuites>
        <groups>
                <exclude>
                        <group>Utility</group>
                        <group>Broken</group>
+                       <group>ParserFuzz</group>
                        <group>Stub</group>
                </exclude>
        </groups>