summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-03 16:50:33 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-03 16:50:33 +0000
commit04070b925af8464d3aedecd339180269e7246ebd (patch)
treeef805865fbcbe5c1b0fe742efda419b0759588ac /t
parentfd3f0ae2eb3d54d08e1e42a7b715a312f9a9efda (diff)
downloadperl-04070b925af8464d3aedecd339180269e7246ebd.tar.gz
Upgrade to Attribute::Handlers 0.70.
NOTE: this unearthed the "too late for CHECK block" bug, that's why the 1_compile.t change. p4raw-id: //depot/perl@10407
Diffstat (limited to 't')
-rw-r--r--t/lib/1_compile.t7
1 files changed, 4 insertions, 3 deletions
diff --git a/t/lib/1_compile.t b/t/lib/1_compile.t
index 7d28d00ab6..a713c6c6e0 100644
--- a/t/lib/1_compile.t
+++ b/t/lib/1_compile.t
@@ -61,6 +61,8 @@ delete_by_prefix('ExtUtils::MM_'); # ExtUtils::MakeMaker's domain
delete_by_prefix('File::Spec::'); # File::Spec's domain
add_by_name('File::Spec::Functions'); # put this back
+delete_by_prefix('Attribute::Handlers');# we test this, and we have demos
+
sub using_feature {
my $use = "use$_[0]";
exists $Config{$use} &&
@@ -76,9 +78,8 @@ unless (using_feature('threads') && has_extension('Thread')) {
delete_by_prefix('unicode::');
add_by_name('unicode::distinct'); # put this back
-
-# Delete all modules which have their own tests. This makes
-# this test a lot faster.
+# Delete all modules which have their own tests.
+# This makes this test a lot faster.
foreach my $mod (<DATA>) {
chomp $mod;
delete_by_name($mod);