From 8ddb11ad1cacfcde6f2cc1a48f2f719ccc0064ea Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Thu, 7 Jan 2016 00:36:17 -0800 Subject: [PATCH] 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 --- tests/parser/parserTest.inc | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.20.1