diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-01-23 23:06:49 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-01-23 23:06:49 +0000 |
commit | 176ab42ac987e047ebcd48fa0f08231f4084718a (patch) | |
tree | 72976d9ed6c89e15fac177d7539159b77946de1d | |
parent | 669f4df4d3e46923586e2981355e606fc8a3ab09 (diff) | |
download | perl-176ab42ac987e047ebcd48fa0f08231f4084718a.tar.gz |
make some t/op/write.t failures more verbose
p4raw-id: //depot/perl@22203
-rwxr-xr-x | t/op/write.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/op/write.t b/t/op/write.t index 4f38bfb4d1..ae9f8a5b8a 100755 --- a/t/op/write.t +++ b/t/op/write.t @@ -487,7 +487,9 @@ for my $tref ( @NumTests ){ my $writeres = swrite( $writefmt, $val ); $nt++; - print $expected eq $writeres ? "ok $nt\n" : "not ok $nt\n"; + print $expected eq $writeres + ? "ok $nt\n" + : "not ok $nt\n# f=[$writefmt] exp=[$expected] got=[$writeres]\n"; } } |