summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2023-02-26 06:48:41 -0500
committerAndrew Dunstan <andrew@dunslane.net>2023-02-26 06:52:23 -0500
commit696fa4749b98035f6d8967df77332496bdf970ac (patch)
treec3383cebc87735c9aac897ede1aa772654bcc64b /src/tools
parenta6864751cd11ae99c16da48d603fafa55ce8e57e (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.pl4
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);