diff options
author | Noah Misch | 2022-05-07 07:33:15 +0000 |
---|---|---|
committer | Noah Misch | 2022-05-07 07:33:15 +0000 |
commit | ad76c9708bd1a333c28e7be2178e34b745fb23d1 (patch) | |
tree | b946046266b484feaf9bb1b8d8f3d4b6605760f2 | |
parent | e2f65f42555ff531c6d7c8f151526b4ef7c016f8 (diff) |
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/[email protected]
-rw-r--r-- | contrib/bloom/t/001_wal.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/bloom/t/001_wal.pl b/contrib/bloom/t/001_wal.pl index 9416a64dbd6..f7f16dc5fa2 100644 --- a/contrib/bloom/t/001_wal.pl +++ b/contrib/bloom/t/001_wal.pl @@ -8,6 +8,13 @@ use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; use Test::More; +if (PostgreSQL::Test::Utils::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_primary; my $node_standby; |