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:52:23 -0500 |
| commit | 696fa4749b98035f6d8967df77332496bdf970ac (patch) | |
| tree | c3383cebc87735c9aac897ede1aa772654bcc64b /src/tools | |
| parent | a6864751cd11ae99c16da48d603fafa55ce8e57e (diff) | |
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.
Diffstat (limited to 'src/tools')
| -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 c3729f6be5e..74fb735ec43 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -163,9 +163,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); |
