Adjust behavior of some env settings for the TAP tests of MSVC
authorMichael Paquier <michael@paquier.xyz>
Wed, 15 Dec 2021 01:39:24 +0000 (10:39 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 15 Dec 2021 01:39:24 +0000 (10:39 +0900)
commit7acd01015c4a5edb253ea9468ccb71ef99cabd1a
tree4bc35a30a01dfef24a94e58ac7250096646d774e
parente469f0aaf3c586c8390bd65923f97d4b1683cd9f
Adjust behavior of some env settings for the TAP tests of MSVC

edc2332 has introduced in vcregress.pl some control on the environment
variables LZ4, TAR and GZIP_PROGRAM to allow any TAP tests to be able
use those commands.  This makes the settings more consistent with
src/Makefile.global.in, as the same default gets used for Make and MSVC
builds.

Each parameter can be changed in buildenv.pl, but as a default gets
assigned after loading buldenv.pl, it is not possible to unset any of
these, and using an empty value would not work with "||=" either.  As
some environments may not have a compatible command in their PATH (tar
coming from MinGW is an issue, for one), this could break tests without
an exit path to bypass any failing test.  This commit changes things so
as the default values for LZ4, TAR and GZIP_PROGRAM are assigned before
loading buildenv.pl, not after.  This way, we keep the same amount of
compatibility as a GNU build with the same defaults, and it becomes
possible to unset any of those values.

While on it, this adds some documentation about those three variables in
the section dedicated to the TAP tests for MSVC.

Per discussion with Andrew Dunstan.

Discussion: https://postgr.es/m/YbGYe483803il3X7@paquier.xyz
Backpatch-through: 10
doc/src/sgml/install-windows.sgml
src/tools/msvc/vcregress.pl