From: Jerry D. Hedden Date: Mon, 26 Jan 2009 19:25:32 +0000 (-0500) Subject: Silence verbosity in lib/File/Copy.t during 'make test' in core X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b1144ebad07605065136f9a584f60b816bdb011b;p=p5sagit%2Fp5-mst-13.2.git Silence verbosity in lib/File/Copy.t during 'make test' in core --- diff --git a/lib/File/Copy.t b/lib/File/Copy.t index 7081f5e..2ac93a6 100755 --- a/lib/File/Copy.t +++ b/lib/File/Copy.t @@ -284,8 +284,8 @@ SKIP: { $s_perm |= $id << 9; $c_perm1 |= $id << 9; - diag sprintf "Src permission: %04o; umask %03o\n", $s_perm, $umask; - + diag(sprintf "Src permission: %04o; umask %03o\n", $s_perm, $umask) + unless ($ENV{PERL_CORE}); (umask $umask) // die $!; chmod $s_perm => $src or die sprintf "$!: $src => %o", $s_perm; chmod $c_perm3 => $copy3 or die $!;