diff options
author | Andres Freund <andres@anarazel.de> | 2022-05-08 17:59:30 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-05-08 18:06:38 -0700 |
commit | 1e1542833e8cf3026531b5579db6cbc53ba4b469 (patch) | |
tree | 23b4c0f17ad18271c00d9b934cf50bdc62e1ea33 | |
parent | ec76d007383fabef36e1494a5fde21b503d5e8cf (diff) | |
download | postgresql-1e1542833e8cf3026531b5579db6cbc53ba4b469.tar.gz postgresql-1e1542833e8cf3026531b5579db6cbc53ba4b469.zip |
Disable 031_recovery_conflict.pl until after minor releases.
f40d362a667 disabled part of 031_recovery_conflict.pl due to instability
that's not trivial to fix in the back branches. That fixed most of the
issues. But there was one more failure (on lapwing / REL_10_STABLE).
That failure looks like it might be caused by a genuine problem. Disable the
test until after the set of releases, to avoid packagers etc potentially
having to fight with a test failure they can't do anything about.
Discussion: https://postgr.es/m/3447060.1652032749@sss.pgh.pa.us
Backpatch: 10-14
-rw-r--r-- | src/test/recovery/t/031_recovery_conflict.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/recovery/t/031_recovery_conflict.pl b/src/test/recovery/t/031_recovery_conflict.pl index 0525dac8bcb..3fe9bf20fef 100644 --- a/src/test/recovery/t/031_recovery_conflict.pl +++ b/src/test/recovery/t/031_recovery_conflict.pl @@ -10,6 +10,7 @@ use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; use Test::More; +plan skip_all => "disabled until after minor releases, due to instability"; # Set up nodes my $node_primary = PostgreSQL::Test::Cluster->new('primary'); |