X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=Makefile.PL;h=02450a7ac127673eceb990fbb07410dee0aa2edc;hp=ab6479f9a7ca5870853fba10f66158aefa0c36bc;hb=3ea28db6c35f2f60bfcce151cb4fcee58d6edcf7;hpb=d21b0c568e8f1ec9acb47482446e8ef4ab1e2906 diff --git a/Makefile.PL b/Makefile.PL index ab6479f..02450a7 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,11 @@ +BEGIN{ $INC{'Module/Install/ExtraTests.pm'} = __FILE__ } # to disable the use of ExtrTests 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'; @@ -19,14 +23,43 @@ include 'Test::Exception'; # work around 0.27_0x (its use of diehook might be wr recommends 'MRO::Compat' if $] < 5.010; -if ($Module::Install::AUTHOR) { +my $use_xs; + +for (@ARGV) { + /^--pp$/ and $use_xs = 0; + /^--xs$/ and $use_xs = 1; +} + +if($] < 5.008_001){ + $use_xs = 0; +} + +if(!defined $use_xs){ + configure_requires 'ExtUtils::CBuilder'; + require ExtUtils::CBuilder; + $use_xs = ExtUtils::CBuilder->new(quiet => 1)->have_compiler(); +} + +if($use_xs){ + require Module::Install::XSUtil; + use_ppport(3.19); + cc_warnings(); + cc_src_paths('xs-src'); + + print "Mouse configured in XS (--xs)\n"; +} +else{ + print "Mouse configured in Pure Perl (--pp)\n"; +} + +if (author_context()) { local @INC = ('lib', @INC); require 'lib/Mouse/Spec.pm'; my $require_version = Mouse::Spec->MooseVersion; if (eval{ require Moose; Moose->VERSION($require_version) }) { if (eval 'use Module::Install::AuthorTests; 1') { - create_moose_compatibility_test(); + do 'author/create-moose-compatibility-tests.pl'; recursive_author_tests('xt'); } else { print "you don't have a M::I::AuthorTests.\n"; @@ -34,82 +67,20 @@ if ($Module::Install::AUTHOR) { } else { print "you don't have Moose $require_version. skipping moose compatibility test\n"; } - system("author/generate-mouse-tiny.pl"); -} -WriteAll check_nmake => 0; + if($use_xs){ + # repeat testing + # see also ExtUtils::MM_Any::test_via_harness() + my $test_via_harness = q{$(FULLPERLRUN) -MExtUtils::Command::MM -e} + .q{ "do 'author/force-pp.pl'; test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')"} + .q{ $(TEST_FILES)} . "\n"; -sub create_moose_compatibility_test { - require File::Path; - require File::Spec; - require File::Basename; - - print "Creating compatibility tests in xt/compatibility/* ...\n"; - - File::Path::rmtree(File::Spec->catfile('xt', 'compatibility')); - - # 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]", - - '052-undefined-type-in-union.t' => "Mouse accepts undefined type as a member of union types", - - '600-tiny-tiny.t' => "Moose doesn't support ::Tiny", - '601-tiny-mouse.t' => "Moose doesn't support ::Tiny", - '602-mouse-tiny.t' => "Moose doesn't support ::Tiny", - - '031_roles_applied_in_create.t' => 't/lib/* classes are not Moose classes/roles', - ); - - my @compat_tests; - - File::Find::find( - { - wanted => sub { - return unless -f $_; - - return if /failing/; # skip tests in failing/ directories which are Moose specific - - return if /100_with_moose/; # tests with Moose - return if /deprecated/; - - my $basename = File::Basename::basename($_); - return if $basename =~ /^\./; - - if(exists $SKIP_TEST{$basename}){ - print "# skip $basename because: $SKIP_TEST{$basename}\n"; - return; - } - - my $dirname = File::Basename::dirname($_); - - my $tmpdir = File::Spec->catfile('xt', 'compatibility', $dirname); - File::Path::mkpath($tmpdir); - - my $tmpfile = File::Spec->catfile($tmpdir, $basename); - open my $wfh, '>', $tmpfile or die $!; - print $wfh do { - my $src = do { - open my $rfh, '<', $_ or die $!; - my $s = do { local $/; <$rfh> }; - close $rfh; - $s; - }; - $src =~ s/Mouse::(?:Util::)?is_class_loaded/Class::MOP::is_class_loaded/g; - $src =~ s/Mouse::(?:Util::)?load_class/Class::MOP::load_class/g; - $src =~ s/Mouse/Moose/g; - $src; - }; - close $wfh; - push @compat_tests, $tmpfile; - }, - no_chdir => 1 - }, - 't', - ); - print "Compatibility tests created.\n"; - - clean_files "@compat_tests"; + postamble qq{test_dynamic :: test_pp\n\n} + . qq{test_pp :: pure_all\n} + . qq{\t} . $test_via_harness; + } } +clean_files 'lib/Mouse/Tiny.pm'; + +WriteAll check_nmake => 0;