Skip to content

Commit e599ea0

Browse files
committed
Fix back-patch of "Under has_wal_read_bug, skip .../001_wal.pl."
Per buildfarm members tadarida, snapper, and kittiwake. Back-patch to v10 (all supported versions).
1 parent aca4d56 commit e599ea0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

contrib/bloom/t/001_wal.pl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,18 @@
66
use warnings;
77
use PostgresNode;
88
use TestLib;
9-
use Test::More tests => 31;
9+
use Test::More;
1010

1111
if (TestLib::has_wal_read_bug)
1212
{
1313
# We'd prefer to use Test::More->builder->todo_start, but the bug causes
1414
# this test file to die(), not merely to fail.
1515
plan skip_all => 'filesystem bug';
1616
}
17+
else
18+
{
19+
plan tests => 31;
20+
}
1721

1822
my $node_primary;
1923
my $node_standby;

0 commit comments

Comments
 (0)