From: Eric Wong Date: Wed, 6 Feb 2019 23:12:10 +0000 (+0000) Subject: t/perf-msgview: don't warn about --unordered if skipping X-Git-Tag: v1.2.0~361 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=66f3f784a864a752c40b9aecf120aefdfc31e5c8 t/perf-msgview: don't warn about --unordered if skipping No point in making noise about something that isn't used. --- diff --git a/t/perf-msgview.t b/t/perf-msgview.t index adeb7aac..4975305a 100644 --- a/t/perf-msgview.t +++ b/t/perf-msgview.t @@ -8,6 +8,9 @@ use PublicInbox::Inbox; use PublicInbox::View; require './t/common.perl'; +my $pi_dir = $ENV{GIANT_PI_DIR}; +plan skip_all => "GIANT_PI_DIR not defined for $0" unless $pi_dir; + my @cat = qw(cat-file --buffer --batch-check --batch-all-objects); if (require_git(2.19, 1)) { push @cat, '--unordered'; @@ -16,9 +19,6 @@ if (require_git(2.19, 1)) { "git <2.19, cat-file lacks --unordered, locality suffers\n"; } -my $pi_dir = $ENV{GIANT_PI_DIR}; -plan skip_all => "GIANT_PI_DIR not defined for $0" unless $pi_dir; - my $ibx = PublicInbox::Inbox->new({ mainrepo => $pi_dir, name => 'name' }); my $git = $ibx->git; my $fh = $git->popen(@cat);