added PPCustomFrame classes to restore ability to use replaceVariables with a custom...
[lhc/web/wiklou.git] / maintenance / parserTests.php
index 274356f..192eeaa 100644 (file)
@@ -18,8 +18,8 @@
 # http://www.gnu.org/copyleft/gpl.html
 
 /**
- * @package MediaWiki
- * @subpackage Maintenance
+ * @file
+ * @ingroup Maintenance
  */
 
 /** */
@@ -31,7 +31,7 @@ MediaWiki $wgVersion parser test suite
 Usage: php parserTests.php [--quick] [--quiet] [--show-output]
                            [--color[=(yes|no)]]
                            [--regex=<expression>] [--file=<testfile>]
-                           [--record]
+                           [--record] [--compare]
                            [--help]
 Options:
   --quick          Suppress diff output of failed tests
@@ -42,6 +42,8 @@ Options:
   --regex          Only run tests whose descriptions which match given regex
   --file           Run test cases from a custom file instead of parserTests.txt
   --record         Record tests in database
+  --compare        Compare with recorded results, without updating the database.
+  --keep-uploads   Re-use the same upload directory for each test, don't delete it
   --help           Show this help message
 
 
@@ -68,4 +70,4 @@ echo( "This is MediaWiki version {$version}.\n\n" );
 $ok = $tester->runTestsFromFiles( $files );
 
 exit ($ok ? 0 : -1);
-?>
+