From: Derk-Jan Hartman Date: Thu, 7 Jan 2016 08:36:17 +0000 (-0800) Subject: Print which file we are running parsertests for X-Git-Tag: 1.31.0-rc.0~8391^2 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E//%22%22?a=commitdiff_plain;h=8ddb11ad1cacfcde6f2cc1a48f2f719ccc0064ea;p=lhc%2Fweb%2Fwiklou.git Print which file we are running parsertests for I spent half an hour searching which extension was causing a crash in my parser tests. Printing the filename seems like a handy plan here... Change-Id: I09558101be15e92eeb3841f8f4198c2bc01f3e9d --- diff --git a/tests/parser/parserTest.inc b/tests/parser/parserTest.inc index 6a6d447d01..320acfe8ae 100644 --- a/tests/parser/parserTest.inc +++ b/tests/parser/parserTest.inc @@ -512,6 +512,7 @@ class ParserTest { $ok = true; foreach ( $filenames as $filename ) { + echo "Running parser tests from: $filename\n"; $tests = new TestFileIterator( $filename, $this ); $ok = $this->runTests( $tests ) && $ok; }