diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-21 08:11:13 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-21 08:47:14 +0000 |
commit | 1487aac67a72b9f87b24113f65b4d878401bee33 (patch) | |
tree | 34fb3fe504370630d5bec34ea41a4c1019e3ac25 /lib/ExtUtils/t/INSTALL_BASE.t | |
parent | 7f336194cfaf185f017d3850e370623e7a703691 (diff) | |
download | perl-1487aac67a72b9f87b24113f65b4d878401bee33.tar.gz |
Upgrade to ExtUtils::MakeMaker 6.49_01
Diffstat (limited to 'lib/ExtUtils/t/INSTALL_BASE.t')
-rw-r--r-- | lib/ExtUtils/t/INSTALL_BASE.t | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/ExtUtils/t/INSTALL_BASE.t b/lib/ExtUtils/t/INSTALL_BASE.t index 444276263e..95c62cc060 100644 --- a/lib/ExtUtils/t/INSTALL_BASE.t +++ b/lib/ExtUtils/t/INSTALL_BASE.t @@ -16,7 +16,7 @@ use strict; use File::Path; use Config; -use Test::More tests => 21; +use Test::More tests => 20; use MakeMaker::Test::Utils; use MakeMaker::Test::Setup::BFD; @@ -48,12 +48,9 @@ ok( grep(/^Writing $makefile for Big::Dummy/, my $make = make_run(); run("$make"); # this is necessary due to a dmake bug. -# Test 'make install VERBINST=1' -my $make_install_verbinst = make_macro($make, 'install', VERBINST => 1); -my $install_out = run($make_install_verbinst); -is( $?, 0, 'install' ) || diag $install_out; +my $install_out = run("$make install"); +is( $?, 0, ' make install exited normally' ) || diag $install_out; like( $install_out, qr/^Installing /m ); -like( $install_out, qr/^Writing /m ); ok( -r '../dummy-install', ' install dir created' ); |