🌐 AI搜索 & 代理 主页
Skip to content

Commit 77038d6

Browse files
committed
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
1 parent 17f4467 commit 77038d6

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

src/test/modules/injection_points/Makefile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@ REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
1414

1515
ISOLATION = basic \
1616
inplace \
17-
syscache-update-pruned \
18-
index-concurrently-upsert \
19-
index-concurrently-upsert-predicate \
20-
reindex-concurrently-upsert \
21-
reindex-concurrently-upsert-on-constraint \
22-
reindex-concurrently-upsert-partitioned
17+
syscache-update-pruned
18+
19+
# Temporarily disabled because of flakiness
20+
#ISOLATION =+
21+
# index-concurrently-upsert \
22+
# index-concurrently-upsert-predicate \
23+
# reindex-concurrently-upsert \
24+
# reindex-concurrently-upsert-on-constraint \
25+
# reindex-concurrently-upsert-partitioned
2326

2427
# The injection points are cluster-wide, so disable installcheck
2528
NO_INSTALLCHECK = 1

src/test/modules/injection_points/meson.build

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ tests += {
4646
'basic',
4747
'inplace',
4848
'syscache-update-pruned',
49-
'index-concurrently-upsert',
50-
'index-concurrently-upsert-predicate',
51-
'reindex-concurrently-upsert',
52-
'reindex-concurrently-upsert-on-constraint',
53-
'reindex-concurrently-upsert-partitioned',
49+
# temporarily disabled because of flakiness
50+
# 'index-concurrently-upsert',
51+
# 'index-concurrently-upsert-predicate',
52+
# 'reindex-concurrently-upsert',
53+
# 'reindex-concurrently-upsert-on-constraint',
54+
# 'reindex-concurrently-upsert-partitioned',
5455
],
5556
'runningcheck': false, # see syscache-update-pruned
5657
# Some tests wait for all snapshots, so avoid parallel execution

0 commit comments

Comments
 (0)