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-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 B8F291F5AE; Tue, 23 Jun 2020 18:34:30 +0000 (UTC) Date: Tue, 23 Jun 2020 18:34:29 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] t/init: remove leftover find(1) call Message-ID: <20200623183429.GA2408@dcvr> References: <20200621002133.9090-1-e@yhbt.net> <20200621002133.9090-4-e@yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200621002133.9090-4-e@yhbt.net> List-Id: Eric Wong wrote: > diff --git a/t/init.t b/t/init.t > index 94c6184e..e3e8a229 100644 > --- a/t/init.t > +++ b/t/init.t > + system "find $tmpdir/skip4 >&2"; Gah :x ---------8<-------- Subject: [PATCH] t/init: remove leftover find(1) call I used find(1) here for debugging. The "make check-run" test target needs to be updated to make stderr spew more obvious. --- t/init.t | 1 - 1 file changed, 1 deletion(-) diff --git a/t/init.t b/t/init.t index e3e8a229..f4ebc2f6 100644 --- a/t/init.t +++ b/t/init.t @@ -122,7 +122,6 @@ SKIP: { ok(run_script($cmd), '--skip-artnum -V1'); ok(run_script([qw(-mda --no-precheck)], $env, $rdr), 'deliver V1'); $mm = PublicInbox::Msgmap->new("$tmpdir/skip4"); - system "find $tmpdir/skip4 >&2"; $n = $mm->num_for($mid); is($n, 13, 'V1 NNTP article numbers skipped via --skip-artnum'); }