1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
#perl -T
use Test::Base;
use Carp;
my $OUTFILE = 'test-block.pl';
my $PERL5OPTS = '-Mblib -MCarp::Always';
sub Test::Base::Filter::exec_perl_stderr {
my $self = shift; # The Test::Base::Filter object
my $tmpfile = $OUTFILE;
$self->_write_to($tmpfile, @_);
open my $execution, "$^X $PERL5OPTS $OUTFILE 2>&1 |"
or die "Couldn't open subprocess: $!\n";
local $/;
my $output = <$execution>;
close $execution;
unlink($tmpfile)
or die "Couldn't unlink $tmpfile: $!\n";
return $output;
}
sub fixup_stderr {
s/\.$//mg if $Carp::VERSION < '1.25';
}
filters { perl => 'exec_perl_stderr', stderr => 'fixup_stderr' };
run_is_deeply 'perl', 'stderr';
__END__
=== basic test
--- perl
package A;
sub f {
#line 1
warn "Beware!";
}
sub g {
#line 2
f();
}
package main;
#line 3
A::g();
--- stderr
Beware! at test-block.pl line 1.
A::f() called at test-block.pl line 2
A::g() called at test-block.pl line 3
=== interpreter-thrown warnings
--- perl
package A;
sub f {
use strict;
my $a;
#line 1
my @a = @$a;
}
sub g {
#line 2
f();
}
package main;
#line 3
A::g();
--- stderr
Can't use an undefined value as an ARRAY reference at test-block.pl line 1.
A::f() called at test-block.pl line 2
A::g() called at test-block.pl line 3
=== warn ()
--- perl
warn
--- stderr
Warning: something's wrong at test-block.pl line 1.
=== die ()
--- perl
die
--- stderr
Died at test-block.pl line 1.
=== $@ = EXCEPTION; warn ()
--- perl
local $@ = 'EXCEPTION';
warn
--- stderr
EXCEPTION ...caught at test-block.pl line 2.
=== $@ = EXCEPTION; die ()
--- perl
local $@ = 'EXCEPTION';
die
--- stderr
EXCEPTION ...propagated at test-block.pl line 2.
=== foo at bar
--- perl
die "foo at bar"
--- stderr
foo at bar at test-block.pl line 1.
=== Kaboom + diagnostics RT#96561
--- perl
die "Kaboom at foo/bar.pl line 123
Some additional diagnostics added here by
a custom error handler\n"
--- stderr
Kaboom at foo/bar.pl line 123
Some additional diagnostics added here by
a custom error handler
at test-block.pl line 1.
=== exception objects
--- perl
package error;
use overload '""' => sub { "Exception: " . shift->{error} . "\n" };
package main;
die bless { error => 'bad' }, error;
--- stderr
Exception: bad
=== Carp::carp
--- perl
use Carp;
carp 'foo';
--- stderr
foo at test-block.pl line 2.
=== Carp::croak
--- perl
use Carp;
croak 'foo';
--- stderr
foo at test-block.pl line 2.
=== no Carp::Always
--- perl
no Carp::Always;
warn "foo\n";
--- stderr
foo
=== no Carp::Always; use Carp::Always;
--- perl
Carp::Always->unimport;
warn "foo\n";
Carp::Always->import;
warn "foo\n";
--- stderr
foo
foo
at test-block.pl line 4.
=== nested Carp::Carp
--- perl
package A;
use Carp 'carp';
sub f {
#line 1
carp "Beware!";
}
sub g {
#line 2
f();
}
package main;
#line 3
A::g();
--- stderr
Beware! at test-block.pl line 1.
A::f() called at test-block.pl line 2
A::g() called at test-block.pl line 3
=== Preserve non-repeated "at FILE line LINE" GH#8
--- perl
die "haha at /Where/isit.t line 4545.\n"
--- stderr
haha at /Where/isit.t line 4545.
at test-block.pl line 1.
=== Carp::confess RT#123354
--- perl
package A;
use Carp 'confess';
sub f {
#line 1
confess "Beware!";
}
sub g {
#line 2
f();
}
package main;
#line 3
A::g();
--- stderr
Beware! at test-block.pl line 1.
A::f() called at test-block.pl line 2
A::g() called at test-block.pl line 3
|