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.
pull/139/head
Andrew Dunstan 3 years ago
parent 9eaba06027
commit 4d68338b26
  1. 4
      src/tools/msvc/vcregress.pl

@ -163,9 +163,7 @@ sub installcheck_internal
"--bindir=../../../$Config/psql",
"--schedule=${schedule}_schedule",
"--max-concurrent-tests=20",
"--make-testtablespace-dir",
"--encoding=SQL_ASCII",
"--no-locale");
"--make-testtablespace-dir");
push(@args, $maxconn) if $maxconn;
push(@args, @EXTRA_REGRESS_OPTS);
system(@args);

Loading…
Cancel
Save