diff options
author | Noah Misch <noah@leadboat.com> | 2025-01-25 11:28:14 -0800 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2025-01-25 11:28:18 -0800 |
commit | eca456edc1caf4e93b5d4480b201cd091acede1d (patch) | |
tree | acd0652bc0aed8fe8a6d8df352275b774142b33a | |
parent | 3637905c3cdfea95feda901ce570a077964c8d94 (diff) |
Disable runningcheck for src/test/modules/injection_points/specs.
Directory "injection_points" has specified NO_INSTALLCHECK since before
commit c35f419d6efbdf1a050250d84b687e6705917711 added the specs, but
that commit neglected to disable the corresponding meson runningcheck.
The alternative would be to enable "make installcheck" for ISOLATION,
but the GNU make build system lacks a concept of setting NO_INSTALLCHECK
for REGRESS without also setting it for ISOLATION. Back-patch to v17,
where that commit first appeared, to avoid surprises when back-patching
additional specs.
Discussion: https://postgr.es/m/17821-dd8c334263399284@postgresql.org
-rw-r--r-- | src/test/modules/injection_points/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/modules/injection_points/meson.build b/src/test/modules/injection_points/meson.build index 103dd1c19ad..33303089cff 100644 --- a/src/test/modules/injection_points/meson.build +++ b/src/test/modules/injection_points/meson.build @@ -42,5 +42,6 @@ tests += { 'specs': [ 'inplace', ], + 'runningcheck': false, # align with GNU make build system }, } |