diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2022-02-17 09:59:59 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2022-02-17 09:59:59 -0500 |
commit | f1ac4a74dee5ac0c89612fe2ac6e48082edbec23 (patch) | |
tree | 32756dbd0a3a69b6fb73afe3b724103b902832cd /src/test/perl/PostgreSQL/Test/Utils.pm | |
parent | 19252e8ec938bf07897c1519f367d0467a39242c (diff) | |
download | postgresql-f1ac4a74dee5ac0c89612fe2ac6e48082edbec23.tar.gz postgresql-f1ac4a74dee5ac0c89612fe2ac6e48082edbec23.zip |
Disable perl2host() processing in TAP tests
This is a preliminary step towards removing it altogether, but this lets
us double check that nothing breaks in the buildfarm before we do.
Discussion: https://postgr.es/m/0ba775a2-8aa0-0d56-d780-69427cf6f33d@dunslane.net
Diffstat (limited to 'src/test/perl/PostgreSQL/Test/Utils.pm')
-rw-r--r-- | src/test/perl/PostgreSQL/Test/Utils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/PostgreSQL/Test/Utils.pm b/src/test/perl/PostgreSQL/Test/Utils.pm index 57fcb240898..31e2b0315ee 100644 --- a/src/test/perl/PostgreSQL/Test/Utils.pm +++ b/src/test/perl/PostgreSQL/Test/Utils.pm @@ -311,7 +311,7 @@ The returned path uses forward slashes but has no trailing slash. sub perl2host { my ($subject) = @_; - return $subject unless $Config{osname} eq 'msys'; + return $subject; if ($is_msys2) { # get absolute, windows type path |