diff options
| author | Álvaro Herrera | 2025-12-15 11:17:37 +0000 |
|---|---|---|
| committer | Álvaro Herrera | 2025-12-15 11:17:37 +0000 |
| commit | 77038d6d0b49622e719fc00ed46db0ab47d2b747 (patch) | |
| tree | ebf590ea6c0ae937fe609951ad11ef3b8fca9a63 /src | |
| parent | 17f446784d54da827f74c2acc0fa772a41b92354 (diff) | |
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/[email protected]
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/modules/injection_points/Makefile | 15 | ||||
| -rw-r--r-- | src/test/modules/injection_points/meson.build | 11 |
2 files changed, 15 insertions, 11 deletions
diff --git a/src/test/modules/injection_points/Makefile b/src/test/modules/injection_points/Makefile index c85034eb8cc..bfdb3f53377 100644 --- a/src/test/modules/injection_points/Makefile +++ b/src/test/modules/injection_points/Makefile @@ -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 diff --git a/src/test/modules/injection_points/meson.build b/src/test/modules/injection_points/meson.build index 8d6f662040d..493e11053dc 100644 --- a/src/test/modules/injection_points/meson.build +++ b/src/test/modules/injection_points/meson.build @@ -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 |
