v2-0001-meson-Include-TAP-tests-in-the-configuration-summ.patch

application/octet-stream

Filename: v2-0001-meson-Include-TAP-tests-in-the-configuration-summ.patch
Type: application/octet-stream
Part: 0
Message: Re: RFC: adding pytest as a supported test framework

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: format-patch
Series: patch v2-0001
Subject: meson: Include TAP tests in the configuration summary
File+
meson.build 9 0
From 8443d4262985edaa8acb204f2396e9c55d404c07 Mon Sep 17 00:00:00 2001
From: Jacob Champion <jacob.champion@enterprisedb.com>
Date: Fri, 5 Sep 2025 16:39:08 -0700
Subject: [PATCH v2 1/6] meson: Include TAP tests in the configuration summary

...to make it obvious when they've been enabled. prove is added to the
executables list for good measure.

TODO: does Autoconf need something similar?

Per complaint by Peter Eisentraut.
---
 meson.build | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/meson.build b/meson.build
index 395416a6060..37ed68ceeb4 100644
--- a/meson.build
+++ b/meson.build
@@ -3952,6 +3952,7 @@ summary(
     'bison': '@0@ @1@'.format(bison.full_path(), bison_version),
     'dtrace': dtrace,
     'flex': '@0@ @1@'.format(flex.full_path(), flex_version),
+    'prove': prove,
   },
   section: 'Programs',
 )
@@ -3988,3 +3989,11 @@ summary(
   section: 'External libraries',
   list_sep: ' ',
 )
+
+summary(
+  {
+    'tap': tap_tests_enabled,
+  },
+  section: 'Other features',
+  list_sep: ' ',
+)
-- 
2.34.1