summaryrefslogtreecommitdiff
path: root/cpan/ExtUtils-MakeMaker/t/writemakefile_args.t
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-10-24 14:03:55 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-10-24 14:03:55 -0700
commitb37c54af8999d4b762bc5532a5ded18c28f61270 (patch)
tree2a74139f83c43b86be9cccf219b69601fc494f2b /cpan/ExtUtils-MakeMaker/t/writemakefile_args.t
parenteb9e3b14fd77e43b36846b86f8780d23fda50258 (diff)
downloadperl-b37c54af8999d4b762bc5532a5ded18c28f61270.tar.gz
Revert "Update ExtUtils-MakeMaker to CPAN version 7.00"
This reverts commit 7b01e4b183c6629065260ae2befad5e5d4ab6b94. The newest ExtUtils::MakeMaker uses the :utf8 layers, which is not available under miniperl on Windows. So the build fails. Revert this for now until a fixed version is released.
Diffstat (limited to 'cpan/ExtUtils-MakeMaker/t/writemakefile_args.t')
-rw-r--r--cpan/ExtUtils-MakeMaker/t/writemakefile_args.t10
1 files changed, 2 insertions, 8 deletions
diff --git a/cpan/ExtUtils-MakeMaker/t/writemakefile_args.t b/cpan/ExtUtils-MakeMaker/t/writemakefile_args.t
index d1b4d41eee..0625960c75 100644
--- a/cpan/ExtUtils-MakeMaker/t/writemakefile_args.t
+++ b/cpan/ExtUtils-MakeMaker/t/writemakefile_args.t
@@ -8,7 +8,6 @@ BEGIN {
}
use strict;
-use Config;
use Test::More tests => 43;
use TieOut;
@@ -36,11 +35,6 @@ ok( chdir 'Big-Dummy', "chdir'd to Big-Dummy" ) ||
ok( my $stdout = tie *STDOUT, 'TieOut' );
my $warnings = '';
local $SIG{__WARN__} = sub {
- if ( $Config{usecrosscompile} ) {
- # libraries might not be present on the target system
- # when cross-compiling
- return if $_[0] =~ /\A\QWarning (mostly harmless): No library found for \E.+/
- }
$warnings .= join '', @_;
};
@@ -272,13 +266,13 @@ VERIFY
# PERL_MM_OPT
{
- local $ENV{PERL_MM_OPT} = 'INSTALL_BASE="/Users/miyagawa/tmp/car1 foo/foo bar"';
+ local $ENV{PERL_MM_OPT} = 'INSTALL_BASE="/Users/miyagawa/tmp/car1 foo/foo bar"';
$mm = WriteMakefile(
NAME => 'Big::Dummy',
VERSION => '1.00',
);
- is( $mm->{INSTALL_BASE}, "/Users/miyagawa/tmp/car1 foo/foo bar", 'parse_args() splits like shell' );
+ is( $mm->{INSTALL_BASE}, "/Users/miyagawa/tmp/car1 foo/foo bar", 'parse_args() splits like shell' );
}
}