]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Under has_wal_read_bug, skip contrib/bloom/t/001_wal.pl.
authorNoah Misch <noah@leadboat.com>
Sat, 7 May 2022 07:33:15 +0000 (00:33 -0700)
committerNoah Misch <noah@leadboat.com>
Sat, 7 May 2022 07:40:03 +0000 (00:40 -0700)
Per buildfarm members snapper and kittiwake.  Back-patch to v10 (all
supported versions).

Discussion: https://postgr.es/m/20220116210241.GC756210@rfd.leadboat.com

contrib/bloom/t/001_wal.pl

index 3537041c06c9552e327410aa0476cd6c29c8d7b8..170cd12e1704f8deef71f31f31818832dd11b6ba 100644 (file)
@@ -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;