mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 08:42:38 -04:00
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).
This commit is contained in:
parent
aca4d561cb
commit
e599ea0969
1 changed files with 5 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use PostgresNode;
|
use PostgresNode;
|
||||||
use TestLib;
|
use TestLib;
|
||||||
use Test::More tests => 31;
|
use Test::More;
|
||||||
|
|
||||||
if (TestLib::has_wal_read_bug)
|
if (TestLib::has_wal_read_bug)
|
||||||
{
|
{
|
||||||
|
|
@ -14,6 +14,10 @@ if (TestLib::has_wal_read_bug)
|
||||||
# this test file to die(), not merely to fail.
|
# this test file to die(), not merely to fail.
|
||||||
plan skip_all => 'filesystem bug';
|
plan skip_all => 'filesystem bug';
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
plan tests => 31;
|
||||||
|
}
|
||||||
|
|
||||||
my $node_primary;
|
my $node_primary;
|
||||||
my $node_standby;
|
my $node_standby;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue