Skip to content

Commit a9f8ca6

Browse files
committed
Under has_wal_read_bug, skip recovery/t/032_relfilenode_reuse.pl.
Per buildfarm member kittiwake. Back-patch to v15, where this test first appeared. Discussion: https://postgr.es/m/20220116210241.GC756210@rfd.leadboat.com
1 parent 5543677 commit a9f8ca6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/test/recovery/t/032_relfilenode_reuse.pl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
use Test::More;
66
use File::Basename;
77

8+
if (PostgreSQL::Test::Utils::has_wal_read_bug)
9+
{
10+
# We'd prefer to use Test::More->builder->todo_start, but the bug causes
11+
# this test file to die(), not merely to fail.
12+
plan skip_all => 'filesystem bug';
13+
}
14+
815

916
my $node_primary = PostgreSQL::Test::Cluster->new('primary');
1017
$node_primary->init(allows_streaming => 1);

0 commit comments

Comments
 (0)