diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-12-01 11:23:41 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-12-01 11:23:41 +0000 |
commit | 936a258b3bd6beb80194d6856e785f700e800472 (patch) | |
tree | 25ea15f0fd74cecdd03be8a84c326239c2d3f362 | |
parent | 3928a66ad4bd8aee704eda1942b7877c0ff1ab2c (diff) | |
download | perl-936a258b3bd6beb80194d6856e785f700e800472.tar.gz |
Skip executable Cygwin test in EUMM when in core
Change has been upstreamed as:
<https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/d0172d0f>
-rw-r--r-- | cpan/ExtUtils-MakeMaker/t/MM_Cygwin.t | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpan/ExtUtils-MakeMaker/t/MM_Cygwin.t b/cpan/ExtUtils-MakeMaker/t/MM_Cygwin.t index 9640ac7fa8..b518c8c79e 100644 --- a/cpan/ExtUtils-MakeMaker/t/MM_Cygwin.t +++ b/cpan/ExtUtils-MakeMaker/t/MM_Cygwin.t @@ -115,8 +115,10 @@ SKIP: { } # Our copy of Perl (with a unix-path) should always be executable. -ok(MM->maybe_command($Config{perlpath}), qq{'$Config{perlpath}' should be executable}); - +SKIP: { + skip "The Perl may not be installed yet when in core" if $ENV{PERL_CORE}; + ok(MM->maybe_command($Config{perlpath}), qq{'$Config{perlpath}' should be executable}); +} package FakeOut; |