summaryrefslogtreecommitdiff
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:13:32 -0700
commit4caa85e4f358c8c442fd5855fbc2d80237d3e857 (patch)
treea876a0f226af2c912e8ad03aac0ed6654800a692
parent23213f53ba206f8104ccbac9934190fdbfbfc082 (diff)
downloadpostgresql-4caa85e4f358c8c442fd5855fbc2d80237d3e857.tar.gz
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 170cd12e17..86aee55e37 100644
--- a/contrib/bloom/t/001_wal.pl
+++ b/contrib/bloom/t/001_wal.pl
@@ -3,7 +3,7 @@ use strict;
use warnings;
use PostgresNode;
use TestLib;
-use Test::More tests => 31;
+use Test::More;
if (TestLib::has_wal_read_bug)
{
@@ -11,6 +11,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_master;
my $node_standby;