]> granicus.if.org Git - postgresql/commit
Fix TAP tests and MSVC scripts for pathnames with spaces.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 9 Jul 2016 20:47:38 +0000 (16:47 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 9 Jul 2016 20:47:38 +0000 (16:47 -0400)
commit30b2731bd21741a6370afba330cea31c75da3bdb
tree3716d5042d416c09cbb79d21a20983e705f2198a
parentc57562725d219c4249b82f4a4fb5aaeee3ae0d53
Fix TAP tests and MSVC scripts for pathnames with spaces.

Change assorted places in our Perl code that did things like
system("prog $path/file");
to do it more like
system('prog', "$path/file");
which is safe against spaces and other special characters in the path
variable.  The latter was already the prevailing style, but a few bits
of code hadn't gotten this memo.  Back-patch to 9.4 as relevant.

Michael Paquier, Kyotaro Horiguchi

Discussion: <20160704.160213.111134711.horiguchi.kyotaro@lab.ntt.co.jp>
src/test/perl/PostgresNode.pm
src/tools/msvc/Install.pm
src/tools/msvc/vcregress.pl