diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-06-18 09:23:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-06-18 09:23:20 +0000 |
commit | 87ee58c584ab9e9a8c1fd26b129591e37d8db57f (patch) | |
tree | 4c3b7c83d680e65c9b574d2d2cb7cf06936f84d8 /t/lib | |
parent | 0a1159697ae966af54745ce2aafc1da6f0e533c9 (diff) | |
download | perl-87ee58c584ab9e9a8c1fd26b129591e37d8db57f.tar.gz |
Can't test the B modules if we didn't build 'em
p4raw-id: //depot/perl@22948
Diffstat (limited to 't/lib')
-rw-r--r-- | t/lib/1_compile.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/lib/1_compile.t b/t/lib/1_compile.t index 78750d0e55..ecbafdecbc 100644 --- a/t/lib/1_compile.t +++ b/t/lib/1_compile.t @@ -25,6 +25,9 @@ if (eval { require Socket }) { push @Core_Modules, qw(Net::Cmd Net::POP3); } } +if(eval { require B }) { + push @Core_Modules, qw(B::C B::CC B::Stackobj); +} @Core_Modules = sort @Core_Modules; @@ -66,9 +69,6 @@ sub compile_module { # http://www.pobox.com/~schwern/cgi-bin/perl-qa-wiki.cgi?UntestedModules # and vice-versa. The list should only shrink. __DATA__ -B::C -B::CC -B::Stackobj CPAN::FirstTime DynaLoader Pod::Plainer |