Upgrade to ExtUtils::MakeMaker 6.49_01
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / INSTALL_BASE.t
index 4442762..95c62cc 100644 (file)
@@ -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' );