diff options
author | Noah Misch | 2022-10-29 17:42:16 +0000 |
---|---|---|
committer | Noah Misch | 2022-10-29 17:42:16 +0000 |
commit | a9f8ca6005f1441b4e28272f744fb01fbc14b29f (patch) | |
tree | 05d540c39912e7e1edc961c5af177d8a85e89f02 | |
parent | 5543677ec90a15c73dab5ed4f0902b3b920f0b87 (diff) |
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
-rw-r--r-- | src/test/recovery/t/032_relfilenode_reuse.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/recovery/t/032_relfilenode_reuse.pl b/src/test/recovery/t/032_relfilenode_reuse.pl index 92ec510037a..499ec34a7aa 100644 --- a/src/test/recovery/t/032_relfilenode_reuse.pl +++ b/src/test/recovery/t/032_relfilenode_reuse.pl @@ -5,6 +5,13 @@ use PostgreSQL::Test::Utils; use Test::More; use File::Basename; +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 = PostgreSQL::Test::Cluster->new('primary'); $node_primary->init(allows_streaming => 1); |