Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Disable runningcheck for src/test/modules/injection_points/specs.
authorNoah Misch <noah@leadboat.com>
Sat, 25 Jan 2025 19:28:14 +0000 (11:28 -0800)
committerNoah Misch <noah@leadboat.com>
Sat, 25 Jan 2025 19:28:18 +0000 (11:28 -0800)
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

src/test/modules/injection_points/meson.build

index 103dd1c19adc9cddac39705d56d76f847f0019e4..33303089cffa4de1302d5441fa52853f03429c76 100644 (file)
@@ -42,5 +42,6 @@ tests += {
     'specs': [
       'inplace',
     ],
+    'runningcheck': false, # align with GNU make build system
   },
 }