X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FExtUtils%2Ft%2FINSTALL_BASE.t;h=95c62cc060d5c14b6d67d5f148e92c436250ba25;hb=1487aac67a72b9f87b24113f65b4d878401bee33;hp=444276263e2f125f30b02ed2511eeab3684e1c60;hpb=7f336194cfaf185f017d3850e370623e7a703691;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/ExtUtils/t/INSTALL_BASE.t b/lib/ExtUtils/t/INSTALL_BASE.t index 4442762..95c62cc 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' );