about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-02-02 06:52:15 +0000
committerEric Wong <e@yhbt.net>2020-02-02 17:29:50 +0000
commit2710d3105e70ff467eff9e977325628b4e9dd1c5 (patch)
treebd394015cdcc32a01b59fe216d46bc5fd6b3ec48 /t
parent2b359355ae5839a5597ba81a40194bb3503118a0 (diff)
downloadpublic-inbox-2710d3105e70ff467eff9e977325628b4e9dd1c5.tar.gz
This is to be consistent with the `nproc(1)' code path.  It also
quiets down a warning from Admin when "-j $JOBS" is specified,
since the master process (which distributes work to shards and
handles OverIdx and Msgmap) is considered a job on its own.
Diffstat (limited to 't')
-rw-r--r--t/xcpdb-reshard.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/xcpdb-reshard.t b/t/xcpdb-reshard.t
index 9f0034f1..5fce5ead 100644
--- a/t/xcpdb-reshard.t
+++ b/t/xcpdb-reshard.t
@@ -40,7 +40,7 @@ for my $i (1..$ndoc) {
 }
 $im->done;
 my @shards = grep(m!/\d+\z!, glob("$ibx->{inboxdir}/xap*/*"));
-is(scalar(@shards), $nproc, 'got expected shards');
+is(scalar(@shards), $nproc - 1, 'got expected shards');
 my $orig = $ibx->over->query_xover(1, $ndoc);
 my %nums = map {; "$_->{num}" => 1 } @$orig;