diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2023-02-26 06:48:41 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2023-02-26 06:48:41 -0500 |
commit | 18f2f8b8b02cdedf89a943498262cf23a3eb7f61 (patch) | |
tree | 2813fb976f35404c1c8229973306e676b7434a41 | |
parent | ee7e8f3838733f09a67e1421f0d7c6498cd68ab0 (diff) | |
download | postgresql-18f2f8b8b02cdedf89a943498262cf23a3eb7f61.tar.gz postgresql-18f2f8b8b02cdedf89a943498262cf23a3eb7f61.zip |
Don't force SQL_ASCII/no-locale for installcheck in vcregress.pl
It's been this way for a very long time, but it appears to have been
masking an issue that only manifests with different settings. Therefore,
run the tests in the installation's default encoding/locale.
Backpatch to all live branches.
-rw-r--r-- | src/tools/msvc/vcregress.pl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 9d2eee89f31..372f6d1b65f 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -164,9 +164,7 @@ sub installcheck_internal "--dlpath=.", "--bindir=../../../$Config/psql", "--schedule=${schedule}_schedule", - "--max-concurrent-tests=20", - "--encoding=SQL_ASCII", - "--no-locale"); + "--max-concurrent-tests=20"); push(@args, $maxconn) if $maxconn; push(@args, @EXTRA_REGRESS_OPTS); system(@args); |