summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2022-05-07 00:33:15 -0700
committerNoah Misch <noah@leadboat.com>2022-05-07 00:40:03 -0700
commit23213f53ba206f8104ccbac9934190fdbfbfc082 (patch)
tree3825fe1530fe2f7c4cee48f23277bbf3a84e2c03
parent4e39957e6eb52887c2d631e9edf08a07c306ec9f (diff)
downloadpostgresql-23213f53ba206f8104ccbac9934190fdbfbfc082.tar.gz
Under has_wal_read_bug, skip contrib/bloom/t/001_wal.pl.
Per buildfarm members snapper and kittiwake. Back-patch to v10 (all supported versions). Discussion: https://postgr.es/m/20220116210241.GC756210@rfd.leadboat.com
-rw-r--r--contrib/bloom/t/001_wal.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/bloom/t/001_wal.pl b/contrib/bloom/t/001_wal.pl
index 3537041c06..170cd12e17 100644
--- a/contrib/bloom/t/001_wal.pl
+++ b/contrib/bloom/t/001_wal.pl
@@ -5,6 +5,13 @@ use PostgresNode;
use TestLib;
use Test::More tests => 31;
+if (TestLib::has_wal_read_bug)
+{
+ # We'd prefer to use Test::More->builder->todo_start, but the bug causes
+ # this test file to die(), not merely to fail.
+ plan skip_all => 'filesystem bug';
+}
+
my $node_master;
my $node_standby;