diff options
author | Noah Misch <noah@leadboat.com> | 2022-05-07 09:12:56 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2022-05-07 09:13:37 -0700 |
commit | 0371d6c6a1f428d166673c2c4fd4b63245781c34 (patch) | |
tree | 044ba0228a08db3eed4403d98ef8dce7103bc690 | |
parent | 8fa3386431a7bd11fbc37142999b2125e45e4531 (diff) | |
download | postgresql-0371d6c6a1f428d166673c2c4fd4b63245781c34.tar.gz postgresql-0371d6c6a1f428d166673c2c4fd4b63245781c34.zip |
Fix back-patch of "Under has_wal_read_bug, skip .../001_wal.pl."
Per buildfarm members tadarida, snapper, and kittiwake. Back-patch to
v10 (all supported versions).
-rw-r--r-- | contrib/bloom/t/001_wal.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/bloom/t/001_wal.pl b/contrib/bloom/t/001_wal.pl index e552a8212ae..acc99049e46 100644 --- a/contrib/bloom/t/001_wal.pl +++ b/contrib/bloom/t/001_wal.pl @@ -3,7 +3,7 @@ use strict; use warnings; use PostgresNode; use TestLib; -use Test::More tests => 31; +use Test::More; if (TestLib::has_wal_read_bug) { @@ -11,6 +11,10 @@ if (TestLib::has_wal_read_bug) # this test file to die(), not merely to fail. plan skip_all => 'filesystem bug'; } +else +{ + plan tests => 31; +} my $node_master; my $node_standby; |