]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/xcpdb-reshard: use run_script for -xcpdb
authorEric Wong <e@80x24.org>
Fri, 15 Nov 2019 09:50:59 +0000 (09:50 +0000)
committerEric Wong <e@80x24.org>
Sat, 16 Nov 2019 11:05:24 +0000 (11:05 +0000)
This more than doubles the speed of the test, since we make
many invocations of -xcpdb.

t/xcpdb-reshard.t

index 43e08639d8ba72e0f3894f5d6f49eefabd1544a4..88e6c3dc3494db9c8d86421d235b154ac1ddf49f 100644 (file)
@@ -33,8 +33,7 @@ my $ibx = PublicInbox::Inbox->new({
        -primary_address => 'test@example.com',
        indexlevel => 'medium',
 });
-my $path = 'blib/script';
-my @xcpdb = ("$path/public-inbox-xcpdb", '-q');
+my @xcpdb = qw(-xcpdb -q);
 my $nproc = 8;
 my $ndoc = 13;
 my $im = PublicInbox::InboxWritable->new($ibx, {nproc => $nproc})->importer(1);
@@ -51,7 +50,7 @@ my %nums = map {; "$_->{num}" => 1 } @$orig;
 # ensure we can go up or down in shards, or stay the same:
 for my $R (qw(2 4 1 3 3)) {
        delete $ibx->{search}; # release old handles
-       is(system(@xcpdb, "-R$R", $ibx->{inboxdir}), 0, "xcpdb -R$R");
+       ok(run_script([@xcpdb, "-R$R", $ibx->{inboxdir}]), "xcpdb -R$R");
        my @new_shards = grep(m!/\d+\z!, glob("$ibx->{inboxdir}/xap*/*"));
        is(scalar(@new_shards), $R, 'resharded to two shards');
        my $msgs = $ibx->search->query('s:this');