diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-06-13 20:08:06 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-06-13 20:08:06 +0900 |
commit | 1df6bee296ed2be0fda11ee7aa42853cf0469f8d (patch) | |
tree | 0786fe19282f72efba3558552e4cfd11568b028c /src/test/perl | |
parent | c1ffbbcbca93b3544c0b57b7ab063497794cb8ff (diff) |
Ignore more environment variables in pg_regress.c
This is similar to the work done in 8279f68 for TestLib.pm, where
environment variables set may cause unwanted failures if using a
temporary installation with pg_regress. The list of variables reset is
adjusted in each stable branch depending on what is supported.
Comments are added to remember that the lists in TestLib.pm and
pg_regress.c had better be kept in sync.
Reviewed-by: Álvaro Herrera
Discussion: https://postgr.es/m/YMNR9GYDn+fHlMta@paquier.xyz
Backpatch-through: 9.6
Diffstat (limited to 'src/test/perl')
-rw-r--r-- | src/test/perl/TestLib.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/perl/TestLib.pm b/src/test/perl/TestLib.pm index 1536cc9ba2a..35c4732b9e4 100644 --- a/src/test/perl/TestLib.pm +++ b/src/test/perl/TestLib.pm @@ -51,6 +51,7 @@ BEGIN delete $ENV{LC_ALL}; $ENV{LC_MESSAGES} = 'C'; + # This list should be kept in sync with pg_regress.c. my @envkeys = qw ( PGCLIENTENCODING PGCONNECT_TIMEOUT |