X-Git-Url: http://git.shiar.nl/barcat.git/blobdiff_plain/fd1358b672c565160eb163da00b404325864114d..06af22b0c153f0c965b27fa674033f5bbaf5b015:/t/examples.t diff --git a/t/examples.t b/t/examples.t index 0b5e778..ae3e7c9 100755 --- a/t/examples.t +++ b/t/examples.t @@ -2,7 +2,12 @@ use 5.014; use warnings; use re '/ms'; + use Test::More; +{ # silence fail diagnostics because of single caller + no warnings 'redefine'; + sub Test::Builder::_ok_debug {} +} my %CMDARGS = ( ping => '-c 1', @@ -46,9 +51,11 @@ while (readline $input) { # run and report unexpected results ok(eval { - qx($cmd) or return; - return $? == 0; - }, $name) or diag($cmd); + my $output = qx($cmd); + $? == 0 or die "error status ", $? >> 8, "\n"; + length $output or die "empty output\n"; + return 1; + }, $name) or diag("Failed command\n$cmd\nfrom $filename line $.: $@"); } done_testing();