1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-18 05:01:01 +03:00

Disable recently added CIC/RI isolation tests

We have tried to stabilize them several times already, but they are very
flaky -- apparently there's some intrinsic instability that's hard to
solve with the isolationtester framework.  They are very noisy in CI
runs (whereas buildfarm has not registered any such failures).  They may
need to be rewritten completely.  In the meantime just comment them out
in Makefile/meson.build, leaving the spec files around.

Per complaint from Andres Freund.

Discussion: https://postgr.es/m/202512112014.icpomgc37zx4@alvherre.pgsql
This commit is contained in:
Álvaro Herrera
2025-12-15 12:17:37 +01:00
parent 17f446784d
commit 77038d6d0b
2 changed files with 15 additions and 11 deletions

View File

@@ -14,12 +14,15 @@ REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
ISOLATION = basic \ ISOLATION = basic \
inplace \ inplace \
syscache-update-pruned \ syscache-update-pruned
index-concurrently-upsert \
index-concurrently-upsert-predicate \ # Temporarily disabled because of flakiness
reindex-concurrently-upsert \ #ISOLATION =+
reindex-concurrently-upsert-on-constraint \ # index-concurrently-upsert \
reindex-concurrently-upsert-partitioned # index-concurrently-upsert-predicate \
# reindex-concurrently-upsert \
# reindex-concurrently-upsert-on-constraint \
# reindex-concurrently-upsert-partitioned
# The injection points are cluster-wide, so disable installcheck # The injection points are cluster-wide, so disable installcheck
NO_INSTALLCHECK = 1 NO_INSTALLCHECK = 1

View File

@@ -46,11 +46,12 @@ tests += {
'basic', 'basic',
'inplace', 'inplace',
'syscache-update-pruned', 'syscache-update-pruned',
'index-concurrently-upsert', # temporarily disabled because of flakiness
'index-concurrently-upsert-predicate', # 'index-concurrently-upsert',
'reindex-concurrently-upsert', # 'index-concurrently-upsert-predicate',
'reindex-concurrently-upsert-on-constraint', # 'reindex-concurrently-upsert',
'reindex-concurrently-upsert-partitioned', # 'reindex-concurrently-upsert-on-constraint',
# 'reindex-concurrently-upsert-partitioned',
], ],
'runningcheck': false, # see syscache-update-pruned 'runningcheck': false, # see syscache-update-pruned
# Some tests wait for all snapshots, so avoid parallel execution # Some tests wait for all snapshots, so avoid parallel execution