X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=38c8a060f98a44030a946355d972581fd899f947;hb=4c0e2aa7665fbf173a9b0c4827d4cd3cfb5cbd0b;hp=9d8bc437b82a291d5d17f52fcaac61268241e665;hpb=f1c70cbe8ab21dd89f564689ef9e20f6fbb82fea;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 9d8bc43..38c8a06 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,6 +2,9 @@ use strict; use warnings; use inc::Module::Install; +system($^X, 'author/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm') == 0 + or warn "Cannot generate Mouse::Tiny: $!"; + name 'Mouse'; all_from 'lib/Mouse.pm'; @@ -34,9 +37,10 @@ if ($Module::Install::AUTHOR) { } else { print "you don't have Moose $require_version. skipping moose compatibility test\n"; } - system("author/generate-mouse-tiny.pl"); } +clean_files 'lib/Mouse/Tiny.pm'; + WriteAll check_nmake => 0; sub create_moose_compatibility_test { @@ -51,7 +55,10 @@ sub create_moose_compatibility_test { # some test does not pass... currently skip it. my %SKIP_TEST = ( '016-trigger.t' => "trigger's argument is incompatble :(", - '010-isa-or.t' => 'Mouse has a [BUG]', + '010-isa-or.t' => "Mouse has a [BUG]", + + '052-undefined-type-in-union.t' => "Mouse accepts undefined type as a member of union types", + '054-anon-leak.t' => 'Moose has memory leaks', '600-tiny-tiny.t' => "Moose doesn't support ::Tiny", '601-tiny-mouse.t' => "Moose doesn't support ::Tiny", @@ -69,7 +76,8 @@ sub create_moose_compatibility_test { return if /failing/; # skip tests in failing/ directories which are Moose specific - return if /100_with_moose/; # tests with Moose + return if /with_moose/; # tests with Moose + return if /100_bugs/; # some tests require Mouse specific files return if /deprecated/; my $basename = File::Basename::basename($_);