summaryrefslogtreecommitdiff
path: root/dist/XSLoader
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-11-23 12:34:49 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-11-24 01:45:28 -0800
commitc404d42afdfcd548f3486781fd748ae2b462f6d4 (patch)
treec120daea1b9c5e0ff6d8480279490737b12c415d /dist/XSLoader
parente7b3543f6af45d688fdf0fc6a64c6f9988436cc6 (diff)
downloadperl-c404d42afdfcd548f3486781fd748ae2b462f6d4.tar.gz
Remove $SIG{__WARN__} from XSLoader.t
Nothing is using the results of this handler any more.
Diffstat (limited to 'dist/XSLoader')
-rw-r--r--dist/XSLoader/t/XSLoader.t3
1 files changed, 0 insertions, 3 deletions
diff --git a/dist/XSLoader/t/XSLoader.t b/dist/XSLoader/t/XSLoader.t
index aab0af1fe7..164e4e5474 100644
--- a/dist/XSLoader/t/XSLoader.t
+++ b/dist/XSLoader/t/XSLoader.t
@@ -75,9 +75,6 @@ my $extensions = $Config{'extensions'};
$extensions =~ s|/|::|g;
for my $module (sort keys %modules) {
- my $warnings = "";
- local $SIG{__WARN__} = sub { $warnings = $_[0] };
-
SKIP: {
skip "$module not available", 3 if $extensions !~ /\b$module\b/;