1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-11 14:10:34 +00:00
freebsd/contrib/perl5/t/lib/ops.t
2000-06-25 11:04:01 +00:00

30 lines
550 B
Perl
Executable File

#!./perl
BEGIN {
chdir 't' if -d 't';
unshift @INC, '../lib';
require Config; import Config;
if ($Config{'extensions'} !~ /\bOpcode\b/ && $Config{'osname'} ne 'VMS') {
print "1..0\n";
exit 0;
}
}
print "1..2\n";
eval <<'EOP';
no ops 'fileno'; # equiv to "perl -M-ops=fileno"
$a = fileno STDIN;
EOP
print $@ =~ /trapped/ ? "ok 1\n" : "not ok 1\n# $@\n";
eval <<'EOP';
use ops ':default'; # equiv to "perl -M(as above) -Mops=:default"
eval 1;
EOP
print $@ =~ /trapped/ ? "ok 2\n" : "not ok 2\n# $@\n";
1;