Cross Reference: compmod.pl
xref
: /
osnet-11
/
usr
/
src
/
cmd
/
perl
/
5.8.4
/
distrib
/
t
/
lib
/
compmod.pl
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!./perl
BEGIN
{
chdir
't'
;
@
INC
=
'../lib'
;
}
my
$
module
=
shift
;
# 'require open' confuses Perl, so we use instead.
eval
"use $module ();"
;
if
( $@ ) {
print
"not "
;
$@ =~ s/\n/\n
# /g;
warn
"# require failed with '$@'\n"
;
}
print
"ok - $module\n"
;