From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>, pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | Re: pgsql: Make PG_TEST_EXTRA env var override the "meson setup" option |
Date: | 2024-11-05 09:16:29 |
Message-ID: | 5c380997-e270-425a-9542-e4ef36a285de@eisentraut.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
On 04.11.24 13:25, Heikki Linnakangas wrote:
> Make PG_TEST_EXTRA env var override the "meson setup" option
I see this warning flying by:
Configuring Makefile.global using configuration
../src/meson.build:31: WARNING: The variable(s) 'PG_TEST_EXTRA' in the
input file 'src/Makefile.global.in' are not present in the given
configuration data.
> "meson test" used to ignore the PG_TEST_EXTRA environment variable,
> which meant that in order to run additional tests, you had to run
> "meson setup -DPG_TEST_EXTRA=...". That's somewhat expensive, and not
> consistent with autoconf builds. Allow PG_TEST_EXTRA environment
> variable to override the setup-time option at run time, so that you
> can do "PG_TEST_EXTRA=... meson test".
>
> To implement this, the configuration time value is passed as an extra
> "--pg-test-extra" argument to testwrap instead of adding it to the
> test environment. If the environment variable is set at the time of
> running test, testwrap uses the value from the environment variable
> and ignores the --pg-test-extra option.
>
> Now that "meson test" obeys the environment variable, we can remove it
> from the "meson setup" steps in the CI script. It will now be picked
> up from the environment variable like with "make check".
>
> Author: Nazir Bilal Yavuzk, Ashutosh Bapat
> Reviewed-by: Ashutosh Bapat with inputs from Tom Lane and Andrew Dunstan
>
> Branch
> ------
> master
>
> Details
> -------
> https://git.postgresql.org/pg/commitdiff/3d1aec225ac4a1199079150dabfd0d34c5054127
>
> Modified Files
> --------------
> .cirrus.tasks.yml | 6 +-----
> doc/src/sgml/installation.sgml | 10 +++++++---
> meson.build | 10 +++++-----
> meson_options.txt | 2 +-
> src/tools/testwrap | 10 ++++++++++
> 5 files changed, 24 insertions(+), 14 deletions(-)
>
From | Date | Subject | |
---|---|---|---|
Next Message | Heikki Linnakangas | 2024-11-05 10:28:12 | pgsql: Silence meson warning about PG_TEST_EXTRA in src/Makefile.global |
Previous Message | Michael Paquier | 2024-11-05 00:41:51 | pgsql: Clear padding of PgStat_HashKey when handling pgstats entries |