about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-04-01 23:23:07 +0000
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-04-01 23:25:08 +0000
commit537eb7ec8c0f8ebd6fa39807a08515ccd3c4be66 (patch)
treeedf283aaaf4ab42eb488f3a6245aec9e78b0e2dd /t
parentc34a83286234ea1e876ebdf92a33744272bb6f4e (diff)
downloadpublic-inbox-537eb7ec8c0f8ebd6fa39807a08515ccd3c4be66.tar.gz
I was too aggressively disabling parallelization to speed up
the test suite and broke this :x  Re-enable parallelization
for the v2reindex test so we can catch it later.
Diffstat (limited to 't')
-rw-r--r--t/v2reindex.t3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/v2reindex.t b/t/v2reindex.t
index b9540e4a..bf44fa0a 100644
--- a/t/v2reindex.t
+++ b/t/v2reindex.t
@@ -30,9 +30,8 @@ my $mime = PublicInbox::MIME->create(
         ],
         body => "hello world\n",
 );
-
+local $ENV{NPROC} = 2;
 my $im = PublicInbox::V2Writable->new($ibx, 1);
-$im->{parallel} = 0;
 foreach my $i (1..10) {
         $mime->header_set('Message-Id', "<$i\@example.com>");
         ok($im->add($mime), "message $i added");