From 1cd91412e73153931814da1a1609a3d7bc12832b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerg=C5=91=20Tisza?= Date: Sun, 17 Sep 2017 05:03:50 +0000 Subject: [PATCH] phpunit.php: omit --quiet in help Bug: T176060 Change-Id: Iee7a0df6ba9fadf92d8e2d9f170cdfc66244d3d5 --- tests/phpunit/phpunit.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/phpunit/phpunit.php b/tests/phpunit/phpunit.php index d8171044f3..7203777096 100755 --- a/tests/phpunit/phpunit.php +++ b/tests/phpunit/phpunit.php @@ -137,6 +137,15 @@ class PHPUnitMaintClass extends Maintenance { return Maintenance::DB_ADMIN; } + protected function addOption( $name, $description, $required = false, + $withArg = false, $shortName = false, $multiOccurrence = false + ) { + // ignore --quiet which does not really make sense for unit tests + if ( $name !== 'quiet' ) { + parent::addOption( $name, $description, $required, $withArg, $shortName, $multiOccurrence ); + } + } + /** * Force the format of elements in $_SERVER['argv'] * - Split args such as "wiki=enwiki" into two separate arg elements "wiki" and "enwiki" -- 2.20.1