MakeMaker sync 5.48_03 -> 5.53_01
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / problems.t
1 # Test problems in Makefile.PL's and hint files.
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't' if -d 't';
6         @INC = ('../lib', 'lib');
7     }
8     else {
9         unshift @INC, 't/lib';
10     }
11 }
12 $ENV{PERL_CORE} ? chdir '../lib/ExtUtils/t' : chdir 't';
13
14 use strict;
15 use Test::More tests => 3;
16 use ExtUtils::MM;
17 use TieOut;
18
19 my $MM = bless { DIR => ['subdir'] }, 'MM';
20
21 ok( chdir 'Problem-Module', "chdir'd to Problem-Module" ) ||
22   diag("chdir failed: $!");
23
24
25 # Make sure when Makefile.PL's break, they issue a warning.
26 # Also make sure Makefile.PL's in subdirs still have '.' in @INC.
27 my $stdout;
28 $stdout = tie *STDOUT, 'TieOut' or die;
29 {
30     my $warning = '';
31     local $SIG{__WARN__} = sub { $warning = join '', @_ };
32     $MM->eval_in_subdirs;
33
34     is( $stdout->read, qq{\@INC has .\n}, 'cwd in @INC' );
35     like( $warning, 
36           qr{^WARNING from evaluation of .*subdir.*Makefile.PL: YYYAaaaakkk},
37           'Makefile.PL death in subdir warns' );
38
39     untie *STDOUT;
40 }