aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2022-05-07 09:12:56 -0700
committerNoah Misch <noah@leadboat.com>2022-05-07 09:12:56 -0700
commite599ea09698ae6ae45bfbb04fbe0bda4e3c04ab0 (patch)
tree6be80a132f7793a9434e6d5655b2f158840ac211
parentaca4d561cb9f567537d12d9d8fbc45ae1528bc9d (diff)
downloadpostgresql-e599ea09698ae6ae45bfbb04fbe0bda4e3c04ab0.tar.gz
postgresql-e599ea09698ae6ae45bfbb04fbe0bda4e3c04ab0.zip
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).
-rw-r--r--contrib/bloom/t/001_wal.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/bloom/t/001_wal.pl b/contrib/bloom/t/001_wal.pl
index d514081eb34..c487c079bd3 100644
--- a/contrib/bloom/t/001_wal.pl
+++ b/contrib/bloom/t/001_wal.pl
@@ -6,7 +6,7 @@ use strict;
use warnings;
use PostgresNode;
use TestLib;
-use Test::More tests => 31;
+use Test::More;
if (TestLib::has_wal_read_bug)
{
@@ -14,6 +14,10 @@ if (TestLib::has_wal_read_bug)
# this test file to die(), not merely to fail.
plan skip_all => 'filesystem bug';
}
+else
+{
+ plan tests => 31;
+}
my $node_primary;
my $node_standby;