Re: Add documentation for coverage reports with meson

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: Add documentation for coverage reports with meson
Дата
Msg-id d3751ca3-1ac9-cc5e-9315-cf9fb0eaa9e9@enterprisedb.com
обсуждение исходный текст
Ответ на Re: Add documentation for coverage reports with meson  (Michael Paquier <michael@paquier.xyz>)
Ответы Re: Add documentation for coverage reports with meson  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-hackers
On 03.03.23 12:12, Michael Paquier wrote:
> +<screen>
> +meson setup -Db_coverage=true ... OTHER OPTIONS ... builddir/
> +cd builddir/
> +meson compile
> +meson test
> +ninja coverage-html
> +</screen>

The "cd" command needs to be moved after the meson commands, and the 
meson commands need to have a -C builddir option.  So it should be like

<screen>
meson setup -Db_coverage=true ... OTHER OPTIONS ... builddir/
meson compile -C builddir
meson test -C builddir
cd builddir/
ninja coverage-html
</screen>

Otherwise, this looks good to me.




В списке pgsql-hackers по дате отправления:

Предыдущее
От: Önder Kalacı
Дата:
Сообщение: Re: [PATCH] Use indexes on the subscriber when REPLICA IDENTITY is full on the publisher
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: allow meson to find ICU in non-standard localtion