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=-3.3 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI,SPF_HELO_NONE, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out0.migadu.com (out0.migadu.com [IPv6:2001:41d0:2:267::]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 271931FB0E for ; Sun, 21 Feb 2021 21:46:42 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1613943996; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pd0OxbsZcGBqi1zBhkwNsXRftxY/6INNxDlVVTDAy94=; b=qyvr1baWJwKBUyHumRXQAmd1nO+KBpFs1CQTatcy6sYo9z/RH4WCz8VlB0yswsBrZE4J98 tyz/KecRnpjD6wDsq7/E0rdxZpUeSwCXaAUhRD8k2blXI55Jh/cAJy6rYZ+ZBvcCYJVP2B 5aSIiPRnBd4yvr0TjfahjSONKAboFlqKXBuN17MFQiZMdTUiO+i5yFQpfNoVYgErk0xsQh VgQBzC71jEHcjpiZmelx8yapiY+VeaW1F2P0efrrqgfBewqFUMhb6XJwqdKexUCDo4+DXQ TZuUtECriFX0VQPqKg1P6oD2XcAEJR9dWzssEfBwWtbOpmVMbUk8IWAFW02eMw== From: Kyle Meyer To: meta@public-inbox.org Subject: [PATCH 1/3] t/www_listing: correct the number of tests for grok-pull skip Date: Sun, 21 Feb 2021 16:46:09 -0500 Message-Id: <20210221214612.15071-2-kyle@kyleam.com> In-Reply-To: <20210221214612.15071-1-kyle@kyleam.com> References: <20210221214612.15071-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com List-Id: --- I'm not positive that I'm understanding skip's $how_many argument or that it matters much. t/www_listing.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/www_listing.t b/t/www_listing.t index 63ef2eacfd407d51..cdf2a1847a945225 100644 --- a/t/www_listing.t +++ b/t/www_listing.t @@ -121,7 +121,7 @@ SKIP: { tiny_test($json, $host, $port); my $grok_pull = which('grok-pull') or - skip('skipping grok-pull integration test', 2); + skip('skipping grok-pull integration test', 12); ok(mkdir("$tmpdir/mirror"), 'prepare grok mirror dest'); open $fh, '>', "$tmpdir/repos.conf" or die; -- 2.30.1