diff options
Diffstat (limited to 'tests/parserTests.php')
-rw-r--r-- | tests/parserTests.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/parserTests.php b/tests/parserTests.php index 4df9a618..debb3575 100644 --- a/tests/parserTests.php +++ b/tests/parserTests.php @@ -24,10 +24,11 @@ * @ingroup Testing */ -$otions = array( 'quick', 'color', 'quiet', 'help', 'show-output', 'record', 'run-disabled' ); +$otions = array( 'quick', 'color', 'quiet', 'help', 'show-output', 'record', 'run-disabled', 'run-parsoid' ); $optionsWithArgs = array( 'regex', 'filter', 'seed', 'setversion' ); -require_once( __DIR__ . '/../maintenance/commandLine.inc' ); +require_once __DIR__ . '/../maintenance/commandLine.inc'; +require_once __DIR__ . '/TestsAutoLoader.php'; if ( isset( $options['help'] ) ) { echo <<<ENDS @@ -52,6 +53,7 @@ Options: --seed <n> Start the fuzz test from the specified seed --help Show this help message --run-disabled run disabled tests + --run-parsoid run parsoid tests (normally disabled) ENDS; exit( 0 ); @@ -71,7 +73,7 @@ if ( $wgDBtype == 'sqlite' ) { # refer to $wgTitle directly, but instead use the title # passed to it. $wgTitle = Title::newFromText( 'Parser test script do not use' ); -$tester = new ParserTest($options); +$tester = new ParserTest( $options ); if ( isset( $options['file'] ) ) { $files = array( $options['file'] ); @@ -82,11 +84,11 @@ if ( isset( $options['file'] ) ) { # Print out software version to assist with locating regressions $version = SpecialVersion::getVersion(); -echo( "This is MediaWiki version {$version}.\n\n" ); +echo "This is MediaWiki version {$version}.\n\n"; if ( isset( $options['fuzz'] ) ) { $tester->fuzzTest( $files ); } else { $ok = $tester->runTestsFromFiles( $files ); - exit ( $ok ? 0 : 1 ); + exit( $ok ? 0 : 1 ); } |