From: Michael Paquier Date: Fri, 30 Nov 2018 22:53:18 +0000 (+0900) Subject: Fix tablespace path TAP test of pg_verify_checksums for msys X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=7d4524aed3a4720086b2914ec22f1bbbc857ac44;p=users%2Frhaas%2Fpostgres.git Fix tablespace path TAP test of pg_verify_checksums for msys TAP tests on msys need to run with the DTK perl, which understands msys virtualized paths. Postgres, however, does not understand such paths, so before a path can be used safely with CREATE TABLESPACE, it needs to be translated into a path on the underlying file system. Per report from buildfarm member jacana. Suggested fix is from Andrew Dunstan. Discussion: https://postgr.es/m/20181130053555.GF2267@paquier.xyz --- diff --git a/src/bin/pg_verify_checksums/t/002_actions.pl b/src/bin/pg_verify_checksums/t/002_actions.pl index 12cca604e6..5250b5a728 100644 --- a/src/bin/pg_verify_checksums/t/002_actions.pl +++ b/src/bin/pg_verify_checksums/t/002_actions.pl @@ -116,6 +116,7 @@ check_relation_corruption($node, 'corrupt1', 'pg_default'); my $basedir = $node->basedir; my $tablespace_dir = "$basedir/ts_corrupt_dir"; mkdir ($tablespace_dir); +$tablespace_dir = TestLib::real_dir($tablespace_dir); $node->safe_psql('postgres', "CREATE TABLESPACE ts_corrupt LOCATION '$tablespace_dir';"); check_relation_corruption($node, 'corrupt2', 'ts_corrupt');