4 @INC = qw(../win32 ../lib);
6 skip_all('FindExt not portable')
12 # Test that Win32/FindExt.pm is consistent with Configure in determining the
13 # types of extensions.
15 if ($^O eq "MSWin32" && !defined $ENV{PERL_STATIC_EXT}) {
16 skip_all "PERL_STATIC_EXT must be set to the list of static extensions";
19 unless (defined $Config{usedl}) {
20 skip_all "FindExt just plain broken for static perl.";
26 FindExt::apply_config(\%Config);
27 FindExt::scan_ext('../cpan');
28 FindExt::scan_ext('../dist');
29 FindExt::scan_ext('../ext');
30 FindExt::set_static_extensions(split ' ', $ENV{PERL_STATIC_EXT}) if $^O eq "MSWin32";
31 FindExt::set_static_extensions(split ' ', $Config{static_ext}) unless $^O eq "MSWin32";
33 # Config.pm and FindExt.pm make different choices about what should be built
37 foreach my $type (qw(static dynamic nonxs)) {
38 push @found_built, eval "FindExt::${type}_ext()";
39 push @config_built, split ' ', $Config{"${type}_ext"};
42 @config_built = sort @config_built;
43 @found_built = sort @found_built;
45 foreach (['dynamic_ext',
46 [FindExt::dynamic_ext()], $Config{dynamic_ext}],
48 [FindExt::static_ext()], $Config{static_ext}],
50 [FindExt::nonxs_ext()], $Config{nonxs_ext}],
52 [FindExt::known_extensions()], $Config{known_extensions}],
53 ['"config" dynamic + static + nonxs',
54 \@config_built, $Config{extensions}],
55 ['"found" dynamic + static + nonxs',
56 \@found_built, join " ", FindExt::extensions()],
58 my ($type, $found, $config) = @$_;
59 my @config = sort split ' ', $config;
60 is (scalar @$found, scalar @config,
61 "We find the same number of $type");
62 is ("@$found", "@config", "We find the same list of $type");
66 # cperl-indent-level: 4
67 # indent-tabs-mode: nil
70 # ex: set ts=8 sts=4 sw=4 et: