In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/936fbabe1d1671d8f272f1745c2abfdef39067d1?hp=48b7c1414cfcd97ff7e31cba045fab034bee9490>
- Log ----------------------------------------------------------------- commit 936fbabe1d1671d8f272f1745c2abfdef39067d1 Author: George Greer <[email protected]> Date: Mon Jul 26 23:11:42 2010 -0400 Keep test output pretty by actually using skip_all()'s message... ----------------------------------------------------------------------- Summary of changes: t/porting/exec-bit.t | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/t/porting/exec-bit.t b/t/porting/exec-bit.t index 4c4bef9..68edf83 100644 --- a/t/porting/exec-bit.t +++ b/t/porting/exec-bit.t @@ -7,9 +7,8 @@ use strict; # the exe bit in the release tarball require './test.pl'; -if ($^O eq "MSWin32") { - diag( "-x on MSWin32 only indicates file has executable suffix. Try Cygwin?" ); - skip_all(); +if ( $^O eq "MSWin32" ) { + skip_all( "-x on MSWin32 only indicates file has executable suffix. Try Cygwin?" ); } plan('no_plan'); -- Perl5 Master Repository
