Index: trunk/phase3/maintenance/parserTests.inc |
— | — | @@ -367,6 +367,12 @@ |
368 | 368 | $section = null; |
369 | 369 | continue; |
370 | 370 | } |
| 371 | + if ( preg_match('/\\bmath\\b/i', $data['options']) && !$this->savedGlobals['wgUseTeX'] ) { |
| 372 | + # don't run math tests if $wgUseTeX is set to false in LocalSettings |
| 373 | + $data = array(); |
| 374 | + $section = null; |
| 375 | + continue; |
| 376 | + } |
371 | 377 | $result = $this->runTest( |
372 | 378 | $this->chomp( $data['test'] ), |
373 | 379 | $this->chomp( $data['input'] ), |