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
pull/258/head
Álvaro Herrera 2 days ago
parent 17f446784d
commit 77038d6d0b
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE
  1. 15
      src/test/modules/injection_points/Makefile
  2. 11
      src/test/modules/injection_points/meson.build

@ -14,12 +14,15 @@ REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
ISOLATION = basic \
inplace \
syscache-update-pruned \
index-concurrently-upsert \
index-concurrently-upsert-predicate \
reindex-concurrently-upsert \
reindex-concurrently-upsert-on-constraint \
reindex-concurrently-upsert-partitioned
syscache-update-pruned
# Temporarily disabled because of flakiness
#ISOLATION =+
# index-concurrently-upsert \
# 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
NO_INSTALLCHECK = 1

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

Loading…
Cancel
Save