diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-06-23 15:30:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-06-23 15:30:36 +0000 |
commit | fc7b31de5fead5f0ce770695a0a02cfed72b403c (patch) | |
tree | 2e810468f54a71c6f94b00065730ae3984c2116e /t/lib | |
parent | 8eff4f1125d15af0870c96cd1277c0e12af15cde (diff) | |
download | perl-fc7b31de5fead5f0ce770695a0a02cfed72b403c.tar.gz |
Integrate:
[ 22928]
t/comp/utf.t failed when configuring with -Dnoextensions=Encode
[ 22947]
Need to skip test 7 if perl built without the PerlIO::scalar extension
[ 22948]
Can't test the B modules if we didn't build 'em
[ 22949]
Unicode::UCD uses Storable, so we can't test if Storable isn't built.
[ 22950]
D'oh. Don't turn on warnings on the #! line without actually testing
the full code in case it warns.
[ 22951]
If we don't build B, we should skip all its tests.
[ 22952]
Skip re tests if re not built.
[ 22953]
Skip test if Devel::PPPort not built
[ 22954]
Skip test if perl configured without threads::shared
[ 22955]
Not ideal, but skip all of IO's tests if Socket is not built.
[ 22956]
Skip tests when PerlIO::scalar and PerlIO::via aren't built
[ 22957]
Also needs skipping if PerlIO::via not built
[ 22958]
This needs POSIX, so skip if no POSIX
[ 22959]
Case insensitive file systems are bad, m'kay
[ 22965]
Skip test if Devel::PPPort is not built.
Probably should fix h2xs to work without it.
[ 22966]
Skip test if Data::Dumper not built
[ 22967]
Skip tests if List::Util not built
p4raw-link: @22967 on //depot/perl: 78cd8b71ec0d7665c422181192afa2819a5d887d
p4raw-link: @22966 on //depot/perl: b5cc9730721234f703470e46d73591d9849c4cd0
p4raw-link: @22965 on //depot/perl: 763a0d2122c8fd573fe9eed4086d4716ae928428
p4raw-link: @22959 on //depot/perl: f788fe6d36db92946e0ca25d9653b059d0ac6d35
p4raw-link: @22958 on //depot/perl: 0658482a3cc08307f48dcbfb691cf3f009bd3320
p4raw-link: @22957 on //depot/perl: c29a2e1a7db1f2900677bea320406eef3cc36b3e
p4raw-link: @22956 on //depot/perl: 740dabb8e3624026adcaa7b5289cda916efa612a
p4raw-link: @22955 on //depot/perl: fedc905f6be3c931533a70fc7e1d4989201d1ae2
p4raw-link: @22954 on //depot/perl: a73a1357d5e6be27adb5d67469939179dfdc53b2
p4raw-link: @22953 on //depot/perl: 2d423903636554795b22a7b943522322f8675856
p4raw-link: @22952 on //depot/perl: 2628e9cec79137941c405ec5dcd495a6d17881c2
p4raw-link: @22951 on //depot/perl: 9cd8f8571248133e4de95e0188070c0cef2693b6
p4raw-link: @22950 on //depot/perl: 2d3cf3ee0325fce8b6dc25a062192e5963aa7940
p4raw-link: @22949 on //depot/perl: 25a47338fa155bc151c8e5863827e694dd2d036d
p4raw-link: @22948 on //depot/perl: b3bfad09cf42ab83b169135721c4f1e81f792cde
p4raw-link: @22947 on //depot/perl: 238210bb9f683911a1cbe4d2e8f1925ecfb2e350
p4raw-link: @22928 on //depot/perl: d70c85514a95a48123aff095670ef279404c7dd0
p4raw-id: //depot/maint-5.8/perl@22986
p4raw-integrated: from //depot/perl@22985 'copy in' lib/Dumpvalue.t
(@13302..) ext/B/t/asmdata.t (@13696..) ext/B/t/bblock.t
(@13698..) lib/DB.t (@14179..) ext/B/t/xref.t (@15323..)
ext/B/t/o.t (@16569..) lib/Pod/t/basic.t (@17753..)
ext/threads/shared/t/disabled.t (@17810..) ext/B/t/b.t
(@17823..) ext/PerlIO/t/via.t (@18086..) ext/B/t/terse.t
(@18737..) ext/B/t/debug.t (@19610..) ext/re/t/re.t (@20269..)
ext/B/t/deparse.t (@20287..) lib/PerlIO/via/t/QuotedPrint.t
(@20713..) ext/Devel/PPPort/t/test.t (@21074..)
ext/PerlIO/t/scalar.t (@21106..) lib/dumpvar.t (@21285..)
t/io/crlf.t (@22423..) lib/h2xs.t (@22828..) t/comp/utf.t
(@22866..) lib/Unicode/UCD.t (@22949..) 'merge in'
ext/B/t/lint.t (@18149..) t/lib/1_compile.t (@20592..)
ext/B/t/stash.t (@21124..) lib/overload.t (@21566..)
lib/Tie/RefHash.t (@22741..) ext/B/t/concise.t
ext/B/t/showlex.t (@22820..) lib/autouse.t (@22876..)
p4raw-integrated: from //depot/perl@22955 'ignore' ext/IO/t/IO.t
(@20345..)
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 6ee59cce2e..9c37830166 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 ByteLoader CPAN::FirstTime DynaLoader |