Re: [HACKERS] SSL TAP tests and chmod

2015-06-23 Thread Robert Haas
On Sun, Jun 21, 2015 at 9:50 PM, Michael Paquier wrote: > On Fri, Jun 19, 2015 at 2:49 PM, Michael Paquier wrote: >> The TAP tests in src/test/ssl are using system() in combination with >> chmod, but perl has a command chmod integrated into it, and it would >> work better on Windows as well. >> Th

Re: [HACKERS] SSL TAP tests and chmod

2015-06-21 Thread Michael Paquier
On Fri, Jun 19, 2015 at 2:49 PM, Michael Paquier wrote: > The TAP tests in src/test/ssl are using system() in combination with > chmod, but perl has a command chmod integrated into it, and it would > work better on Windows as well. > The attached patch is aimed at fixing that. For the sake of the

[HACKERS] SSL TAP tests and chmod

2015-06-18 Thread Michael Paquier
Hi all, The TAP tests in src/test/ssl are using system() in combination with chmod, but perl has a command chmod integrated into it, and it would work better on Windows as well. The attached patch is aimed at fixing that. Regards, -- Michael diff --git a/src/test/ssl/ServerSetup.pm b/src/test/ss