Hi,
On 2026-08-26 16:33:46 +0200, Pierre Forstmann wrote:
> I'm tring to run the equivalent of "make installcheck-world" with meson.
>
> According to https://wiki.postgresql.org/wiki/Meson?utm_source=chatgpt.com:
>
> I have tried:
>
> meson test -C build -q --print-errorlogs --setup running
>
> But these tests fails because it looks like that test extensions are not
> installed:
If you want to have the "test only extensions" installed, you need to do
"ninja install-test-files". They otherwise do not get installed - many of them
are in fact *NOT SAFE* to install in an installation that's used for anything
other than testing. Not required e.g. for the the base regression tests, as
they don't require test-only extensions.
Greetings,
Andres Freund