-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 2;
use Safe;
for my $test_exception (0, 1) {
require Test::Exception if $test_exception;
my $compartment = Safe->new();
$compartment->permit(qw{ require caller });
my $r = $compartment->reval('use warnings;1;');
note($@) if $@;
ok($r, 'warnings');
}Output:
1..2
ok 1 - warnings
Number found where operator expected (Do you need to predeclare "caller"?) at /home/perlbot/perl5/custom/5.40.0/lib/5.40.0/warnings.pm line 454, near "caller 1"
# syntax error at /home/perlbot/perl5/custom/5.40.0/lib/5.40.0/warnings.pm line 454, near "caller 1"
# Execution of /home/perlbot/perl5/custom/5.40.0/lib/5.40.0/warnings.pm aborted due to compilation errors.
# Compilation failed in require at (eval 15) line 1.
# BEGIN failed--compilation aborted at (eval 15) line 1.
not ok 2 - warnings
# Failed test 'warnings'
# at (IRC) line 15.
# Looks like you failed 1 test of 2.
Metadata
Metadata
Assignees
Labels
No labels