Merge "Use ManualLogEntry instead of LogPage to add a new log entry of old file versi...
[lhc/web/wiklou.git] / tests / phpunit / suite.xml
index cb25963..f286fa1 100644 (file)
@@ -1,34 +1,48 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
+<!-- colors don't work on Windows! -->
 <phpunit bootstrap="./bootstrap.php"
-         colors="false"
+         colors="true"
          backupGlobals="false"
          convertErrorsToExceptions="true"
          convertNoticesToExceptions="true"
          convertWarningsToExceptions="true"
          stopOnFailure="false"
-         strict="true">
+                timeoutForSmallTests="2"
+                timeoutForMediumTests="10"
+                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>