From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 44D781F87F for ; Wed, 29 May 2019 08:45:28 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/2] Makefile.PL: enable prove warnings Date: Wed, 29 May 2019 08:45:26 +0000 Message-Id: <20190529084526.4302-3-e@80x24.org> In-Reply-To: <20190529084526.4302-1-e@80x24.org> References: <20190529084526.4302-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We already "use warnings" everywhere, but could miss some spots. This ought to cover that, and usually Perl module authors are consistent about avoiding warnings that we won't clutter our test outputs. --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index f79697b..b1274ad 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -69,7 +69,7 @@ check-manifest :: MANIFEST if git ls-files >\$?.gen 2>&1; then diff -u \$? \$?.gen; fi check:: pure_all check-manifest - \$(EATMYDATA) prove -lv -j\$(N) + \$(EATMYDATA) prove -lvw -j\$(N) lib/PublicInbox/UserContent.pm :: contrib/css/216dark.css \$(PERL) -I lib \$@ \$? -- EW