allow only specifying certain dists to test (wickline)
[gitmo/Moose.git] / xt / author / test-my-dependents.t
CommitLineData
f81522ba 1use strict;
2use warnings;
3
4use Cwd qw( abs_path );
5use Test::More;
6
52c21688 7BEGIN {
a559205a 8 my $help = <<'EOF';
9
10
11 This test will not run unless you set MOOSE_TEST_MD to a true value.
12 Valid values are:
13
a80872b2 14 all Test every dist which depends on Moose except those
15 that we know cannot be tested. This is a lot of
16 distros (thousands).
a559205a 17
a80872b2 18 Dist::1,Dist::2,... Test the individual dists listed.
a559205a 19
a80872b2 20 MooseX Test all Moose extension distros
21 (MooseX modules plus a few others).
22
23 1 Run the default tests. We pick 200 random dists and
24 test them.
a559205a 25
26EOF
27
28 plan skip_all => $help
52c21688 29 unless $ENV{MOOSE_TEST_MD};
30}
f81522ba 31
4d438a84 32use Test::Requires {
0be78be0 33 'Archive::Zip' => 0, # or else .zip dists won't be able to be installed
34 'Test::DependentModules' => '0.13',
35 'MetaCPAN::API' => '0.33',
4d438a84 36};
0be78be0 37
3bf21566 38use Test::DependentModules qw( test_module );
f81522ba 39
7028866a 40use DateTime;
479647ca 41use List::MoreUtils qw(any);
7028866a 42use Moose ();
7028866a 43
41a0b2a9 44diag( 'Test run performed at: '
45 . DateTime->now
479647ca 46 . ' with Moose '
afcee994 47 . (Moose->VERSION || 'git repo') );
7028866a 48
f81522ba 49$ENV{PERL_TEST_DM_LOG_DIR} = abs_path('.');
e2f01bb9 50delete @ENV{ qw( AUTHOR_TESTING RELEASE_TESTING SMOKE_TESTING ) };
f81522ba 51
28885fe7 52$ENV{ANY_MOOSE} = 'Moose';
53
479647ca 54my $mcpan = MetaCPAN::API->new;
55my $res = $mcpan->post(
56 '/release/_search' => {
57 query => { match_all => {} },
58 size => 5000,
59 filter => { and => [
60 { or => [
61 { term => { 'release.dependency.module' => 'Moose' } },
62 { term => { 'release.dependency.module' => 'Moose::Role' } },
63 { term => { 'release.dependency.module' => 'Moose::Exporter' } },
64 { term => { 'release.dependency.module' => 'Class::MOP' } },
65 { term => { 'release.dependency.module' => 'MooseX::Role::Parameterized' } },
28885fe7 66 { term => { 'release.dependency.module' => 'Any::Moose' } },
479647ca 67 ] },
68 { term => { 'release.status' => 'latest' } },
69 { term => { 'release.maturity' => 'released' } },
70 ] },
71 fields => 'distribution'
72 }
73);
f81522ba 74
479647ca 75my @skip_prefix = qw(Acme Task Bundle);
afcee994 76my %skip;
77my %todo;
78
79my $hash;
80for my $line (<DATA>) {
81 chomp $line;
82 next unless $line =~ /\S/;
83 if ( $line =~ /^# (\w+)/ ) {
84 die "Invalid action in DATA section ($1)"
85 unless $1 eq 'SKIP' || $1 eq 'TODO';
86 $hash = $1 eq 'SKIP' ? \%skip : \%todo;
87 }
88
89 my ( $dist, $reason ) = $line =~ /^(\S*)\s*(?:#\s*(.*)\s*)?$/;
90 next unless defined $dist && length $dist;
91
92 $hash->{$dist} = $reason;
93}
91dab191 94
479647ca 95my %name_fix = (
b595f862 96 'App-passmanager' => 'App::PassManager',
479647ca 97 'App-PipeFilter' => 'App::PipeFilter::Generic',
98 'Constructible' => 'Constructible::Maxima',
99 'DCOLLINS-ANN-Locals' => 'DCOLLINS::ANN::Robot',
100 'Dist-Zilla-Deb' => 'Dist::Zilla::Plugin::Deb::VersionFromChangelog',
479647ca 101 'Dist-Zilla-Plugins-CJM' => 'Dist::Zilla::Plugin::TemplateCJM',
72dc4616 102 'Dist-Zilla-Plugin-TemplateFile' => 'Dist::Zilla::Plugin::TemplateFiles',
b595f862 103 'Google-Directions' => 'Google::Directions::Client',
479647ca 104 'helm' => 'Helm',
b595f862 105 'HTML-Untemplate' => 'HTML::Linear',
479647ca 106 'marc-moose' => 'MARC::Moose',
107 'mobirc' => 'App::Mobirc',
72dc4616 108 'OWL-Simple' => 'OWL::Simple::Class',
109 'Patterns-ChainOfResponsibility' => 'Patterns::ChainOfResponsibility::Application',
4de6e6a5 110 'Pod-Elemental-Transfomer-VimHTML' => 'Pod::Elemental::Transformer::VimHTML',
72dc4616 111 'Role-Identifiable' => 'Role::Identifiable::HasIdent',
479647ca 112 'smokebrew' => 'App::SmokeBrew',
b595f862 113 'Treex-Parser-MSTperl' => 'Treex::Tool::Parser::MSTperl',
479647ca 114 'v6-alpha' => 'v6',
b595f862 115 'WebService-LOC-CongRec' => 'WebService::LOC::CongRec::Crawler',
72dc4616 116 'X11-XCB' => 'X11::XCB::Connection',
117 'XML-Ant-BuildFile' => 'XML::Ant::BuildFile::Project',
479647ca 118);
916fcb5c 119
9fe055d9 120my @dists = sort
121 grep { !$skip{$_} }
122 grep { my $dist = $_; !any { $dist =~ /^$_-/ } @skip_prefix }
123 map { $_->{fields}{distribution} }
124 @{ $res->{hits}{hits} };
479647ca 125
a559205a 126if ( $ENV{MOOSE_TEST_MD} eq 'MooseX' ) {
127 @dists = grep { /^(?:MooseX-|Fey-ORM)/ } @dists;
128}
a80872b2 129elsif ( $ENV{MOOSE_TEST_MD} eq '1' ) {
916fcb5c 130 diag(
33012ea9 131 <<'EOF'
132 Picking 200 random dependents to test. Set MOOSE_TEST_MD=all to test all
133 dependents or MOOSE_TEST_MD=MooseX to test extension modules only.
134EOF
916fcb5c 135 );
136
137 my %indexes;
138 while ( keys %indexes < 200 ) {
139 $indexes{ int rand( scalar @dists ) } = 1;
140 }
141
142 @dists = @dists[ sort keys %indexes ];
143}
a80872b2 144elsif ( $ENV{MOOSE_TEST_MD} ne 'all' ) {
145 my @chosen = split /,/, $ENV{MOOSE_TEST_MD};
146 my %dists = map { $_ => 1 } @dists;
147 if (my @unknown = grep { !$dists{$_} } @chosen) {
148 die "Unknown dists: @unknown";
149 }
150 @dists = @chosen;
151}
916fcb5c 152
23b59110 153plan tests => scalar @dists;
9fe055d9 154for my $dist (@dists) {
155 note($dist);
156 my $module = $dist;
157 $module = $name_fix{$module} if exists $name_fix{$module};
158 if ($todo{$dist}) {
afcee994 159 my $reason = $todo{$dist};
3bf21566 160 $reason = '???' unless defined $reason;
7e39015e 161 local $TODO = $reason;
162 eval { test_module($module); 1 }
163 or fail("Died when testing $module: $@");
3bf21566 164 }
165 else {
7e39015e 166 eval { test_module($module); 1 }
167 or fail("Died when testing $module: $@");
3bf21566 168 }
169}
734e40ed 170
c5e3151e 171__DATA__
afcee994 172# SKIP: indexing issues (test::dm bugs?)
0aff3f28 173Alice # couldn't find on cpan
b595f862 174Hopkins # couldn't find on cpan
b595f862 175PostScript-Barcode # couldn't find on cpan
d1dc6007 176WWW-Mechanize-Query # couldn't find on cpan
b595f862 177
afcee994 178# SKIP: doesn't install deps properly (test::dm bugs?)
0aff3f28 179App-Benchmark-Accessors # Mojo::Base isn't installed
180Bot-BasicBot-Pluggable # Crypt::SaltedHash isn't installed
181Code-Statistics # MooseX::HasDefaults::RO isn't installed
182Dist-Zilla-PluginBundle-MITHALDU # List::AllUtils isn't installed
183Dist-Zilla-Util-FileGenerator # MooseX::HasDefaults::RO isn't installed
184EBI-FGPT-FuzzyRecogniser # GO::Parser isn't installed
185Erlang-Parser # Parse::Yapp::Driver isn't installed
186Foorum # Sphinx::Search isn't installed
187Grimlock # DBIx::Class::EncodedColumn isn't installed
188Locale-Handle-Pluggable # MooseX::Types::VariantTable::Declare isn't installed
189mobirc # HTTP::Session::State::GUID isn't installed
190Net-Bamboo # XML::Tidy isn't installed
191Tatsumaki-Template-Markapl # Tatsumaki::Template isn't installed
192Text-Tradition # Bio::Phylo::IO isn't installed
c62b4642 193WebService-Strava # Any::URI::Escape isn't installed
ec58481b 194
afcee994 195# SKIP: no tests
72dc4616 196AI-ExpertSystem-Advanced # no tests
197API-Assembla # no tests
198App-mkfeyorm # no tests
acf165ea 199App-passmanager # no tests
0aff3f28 200App-Scrobble # no tests
72dc4616 201Bot-Applebot # no tests
202Catalyst-Authentication-Credential-Facebook-OAuth2 # no tests
203Catalyst-Authentication-Store-Fey-ORM # no tests
204Catalyst-Controller-MovableType # no tests
205Catalyst-Model-MenuGrinder # no tests
206Chef # no tests
207Data-SearchEngine-ElasticSearch # no tests
208Dist-Zilla-MintingProfile-Author-ARODLAND # no tests
209Dist-Zilla-PluginBundle-ARODLAND # no tests
210Dist-Zilla-PluginBundle-Author-OLIVER # no tests
211Dist-Zilla-PluginBundle-NUFFIN # no tests
212Dist-Zilla-Plugin-DualLife # no tests
a841b7e1 213Dist-Zilla-Plugin-Git-Describe # no tests
72dc4616 214Dist-Zilla-Plugin-GitFlow # no tests
215Dist-Zilla-Plugin-GitFmtChanges # no tests
216Dist-Zilla-Plugin-MetaResourcesFromGit # no tests
217Dist-Zilla-Plugin-ModuleBuild-OptionalXS # no tests
218Dist-Zilla-Plugin-Rsync # no tests
219Dist-Zilla-Plugin-TemplateFile # no tests
220Dist-Zilla-Plugin-UploadToDuckPAN # no tests
221Finance-Bank-SuomenVerkkomaksut # no tests
222Games-HotPotato # no tests
223IO-Storm # no tests
224JIRA-Client-REST # no tests
225Kafka-Client # no tests
226LWP-UserAgent-OfflineCache # no tests
227Markdown-Pod # no tests
228MooseX-Types-DateTimeX # no tests
b8e5ce4a 229MooseX-Types-DateTime-MoreCoercions # no tests unless DateTime::Format::DateManip is installed
0aff3f28 230Net-Azure-BlobService # no tests
72dc4616 231Net-Dropbox # no tests
232Net-Flowdock # no tests
233Net-OpenStack-Attack # no tests
234Net-Ostrich # no tests
235Net-Recurly # no tests
236OpenDocument-Template # no tests
0aff3f28 237Pod-Weaver-Section-Consumes # no tests
72dc4616 238Pod-Weaver-Section-Encoding # no tests
0aff3f28 239Pod-Weaver-Section-Extends # no tests
0729e229 240P50Tools # no tests
72dc4616 241POE-Component-Server-MySQL # no tests
242Random-Quantum # no tests
243SchemaEvolution # no tests
244STD # no tests
245Test-System # no tests
246Test-WWW-Mechanize-Dancer # no tests
247WebService-Buxfer # no tests
248WebService-CloudFlare-Host # no tests
249WWW-MenuGrinder # no tests
250WWW-WuFoo # no tests
251
afcee994 252# SKIP: external dependencies
dfa11004 253Alien-Ditaa # runs java code
b8e5ce4a 254AnyEvent-MSN # requires Net::SSLeay (which requires libssl)
2ec35f55 255AnyEvent-Multilog # requires multilog
256AnyEvent-Net-Curl-Queued # requires libcurl
72dc4616 257AnyEvent-ZeroMQ # requires zeromq installation
258AnyMQ-ZeroMQ # requires zeromq installation
259Apache2-HttpEquiv # requires apache (for mod_perl)
260App-Mimosa # requires fastacmd
261App-PgCryobit # requires postgres installation
67ede39e 262App-SimplenoteSync # requires File::ExtAttr which requires libattr
72dc4616 263Archive-RPM # requires cpio
2ec35f55 264Bot-Jabbot # requires libidn
72dc4616 265Catalyst-Engine-Stomp # depends on alien::activemq
b5937bb0 266Catalyst-Plugin-Session-Store-Memcached # requires memcached
72dc4616 267Cave-Wrapper # requires cave to be installed
268CHI-Driver-Redis # requires redis server
269Crypt-Random-Source-Strong-Win32 # windows only
2ec35f55 270Curses-Toolkit # requires Curses which requires ncurses library
72dc4616 271Dackup # requires ssh
272Data-Collector # requires ssh
a841b7e1 273Data-Riak # requires riak
72dc4616 274DBIx-PgLink # requires postgres installation
275Dist-Zilla-Plugin-Subversion # requires svn bindings
276Dist-Zilla-Plugin-SVK # requires svn bindings
277Dist-Zilla-Plugin-SvnObtain # requires svn bindings
278Fedora-App-MaintainerTools # requires rpm to be installed
279Fedora-App-ReviewTool # requires koji to be installed
2ec35f55 280Fuse-Template # requires libfuse
72dc4616 281Games-HotPotato # requires sdl
282Games-Tetris-Complete # requires threads
283helm # requires ssh
284HTML-Barcode-QRCode # requires libqrencode
2ec35f55 285IRC-RemoteControl # requires libssh2
72dc4616 286JavaScript-Sprockets # requires sprocketize
287JavaScript-V8x-TestMoreish # requires v8
288Koha-Contrib-Tamil # requires yaz
289K # requires kx
290Lighttpd-Control # requires lighttpd
291Lingua-TreeTagger # requires treetagger to be installed
292Math-Lsoda # requires f77
3a1f4e3f 293Message-Passing-ZeroMQ # requires zeromq installation
72dc4616 294MongoDBI # requires mongo
295MongoDB # requires mongo
296MSWord-ToHTML # requires abiword to be installed
2ec35f55 297Net-DBus-Skype # requires dbus
72dc4616 298Net-Route # requires route
afcee994 299Net-SFTP-Foreign-Exceptional # depends on running ssh
2ec35f55 300Net-UpYun # requires curl
301Net-ZooTool # requires curl
72dc4616 302Nginx-Control # requires nginx to be installed
303NLP-Service # requires javac
7e511a8c 304Padre-Plugin-Cookbook # requires Wx
72dc4616 305Padre-Plugin-Moose # requires threaded perl
306Padre-Plugin-PDL # requires threaded perl
307Padre-Plugin-Snippet # requires threaded perl
308Paludis-UseCleaner # depends on cave::wrapper
309Perlanet # HTML::Tidy requires tidyp
310Perl-Dist-Strawberry-BuildPerl-5123 # windows only
311Perl-Dist-Strawberry-BuildPerl-5123 # windows only
312Perl-Dist-WiX-BuildPerl-5123 # windows only
313Perl-Dist-WiX # windows only
314Perl-Dist-WiX # windows only
315POE-Component-OpenSSH # requires ssh
316RDF-TrineX-RuleEngine-Jena # requires Jena
317SimpleDB-Class # requires memcached
318SVN-Simple-Hook # requires svn
319SVN-Tree # requires svn
67ede39e 320Tapper-MCP # depends on everything under the sun - some of which is broken
72dc4616 321Template-JavaScript # requires v8
2ec35f55 322TheSchwartz-Moosified # requires DBI::Pg ?
323WebService-SendGrid # requires curl
324WebService-Tesco-API # requires curl
cdb8d8b2 325WWW-Contact # depends on curl
2ec35f55 326WWW-Curl-Simple # requires curl
72dc4616 327ZeroMQ-PubSub # requires zmq
328ZMQ-Declare # requires zmq
329
afcee994 330# SKIP: flaky internet tests
6539278a 331iTransact-Lite # tests rely on internet site
72cfef4f 332Unicode-Emoji-E4U # tests rely on internet site
333WWW-eNom # tests rely on internet site
0aff3f28 334WWW-Finances-Bovespa # tests rely on internet site
335WWW-Vimeo-Download # tests rely on internet site
72cfef4f 336WWW-YouTube-Download-Channel # tests rely on internet site
0aff3f28 337
afcee994 338# SKIP: graphical
72dc4616 339App-CPAN2Pkg # tk tests are graphical
340App-USBKeyCopyCon # gtk tests are graphical
341CatalystX-Restarter-GTK # gtk tests are graphical
342Forest-Tree-Viewer-Gtk2 # gtk tests are graphical
343Games-Pandemic # tk tests are graphical
344Games-RailRoad # tk tests are graphical
345Games-Risk # tk tests are graphical
346Log-Dispatch-Gtk2-Notify # gtk tests are graphical
347LPDS # gtk tests are graphical
348Periscope # gtk tests are graphical
349Tk-Role-Dialog # tk tests are graphical
350Weaving-Tablet # tk tests are graphical
479647ca 351
afcee994 352# SKIP: prompts (or a dep prompts) or does something else dumb
353Bot-Backbone # poe-loop-ev prompts
354Cache-Ehcache # hangs if server exists on port 8080
355CM-Permutation # OpenGL uses graphics in Makefile.PL
356Date-Biorhythm # Date::Business prompts in Makefile.PL
2282de12 357DBIx-VersionedDDL # runs a script with /usr/bin/perl in the shbang line
358File-Tail-Scribe # tests hang
afcee994 359Gearman-Driver # spews tar errors
4a7b93bf 360IPC-AnyEvent-Gearman # tests hang
a841b7e1 361Lingua-YALI # runs scripts with /usr/bin/env perl in the shbang line
afcee994 362Net-SSH-Mechanize # the mock-ssh script it runs seems to spin endlessly
726ade9b 363POE-Component-Server-SimpleHTTP-PreFork # tests hang
afcee994 364WWW-Hashdb # test hangs, pegging cpu
365Zucchini # File::Rsync prompts in Makefile.PL
2282de12 366
afcee994 367# TODO: failing for a reason
8f655ca2 368Algorithm-KernelKMeans # mx-types-common changes broke it
72dc4616 369AnyEvent-BitTorrent # broken
370AnyEvent-Cron # intermittent failures
8f655ca2 371AnyEvent-Inotify-Simple # ??? (maybe issue with test::sweet)
372AnyEvent-JSONRPC # tests require recommended deps
373AnyEvent-Retry # mx-types-common changes broke it
72dc4616 374AnyMongo # doesn't compile
375App-ArchiveDevelCover # depends on nonexistent testdata::setup
8f655ca2 376App-Dataninja # bad M::I install in inc/
ec58481b 377App-Fotagger # Imager doesn't compile
8f655ca2 378App-Magpie # deps on URPM which doesn't exist
72dc4616 379App-MediaWiki2Git # git::repository is broken
380App-Munchies # depends on XML::DTD
8f655ca2 381App-TemplateServer # broken use of types
382App-TemplateServer-Provider-HTML-Template # dep on app-templateserver
383App-TemplateServer-Provider-Mason # dep on app-templateserver
384App-TemplateServer-Provider-TD # dep on app-templateserver
72dc4616 385App-Twimap # dep on Web::oEmbed::Common
386App-Validation-Automation # dep on Switch
387App-Wubot # broken
388Beagle # depends on term::readline::perl
8f655ca2 389Cache-Profile # broken
8f655ca2 390Catalyst-Authentication-Store-LDAP-AD-Class # pod coverage fail
8f655ca2 391Catalyst-Controller-Resources # broken
72dc4616 392Catalyst-Controller-SOAP # broken
e8ba9394 393Catalyst-Model-Sedna # deps on Alien-Sedna which doesn't exist
394Catalyst-Plugin-Continuation # undeclared dep
72dc4616 395Catalyst-Plugin-Session-State-Cookie # broken
396Catalyst-Plugin-Session-Store-TestMemcached # dep with corrupt archive
e8ba9394 397Catalyst-Plugin-SwiffUploaderCookieHack # undeclared dep
72dc4616 398Catalyst-TraitFor-Request-PerLanguageDomains # dep on ::State::Cookie
cfac852c 399CatalystX-ExtJS-Direct # broken
72dc4616 400CatalystX-I18N # dep on ::State::Cookie
e8ba9394 401CatalystX-MooseComponent # broken
e8ba9394 402CatalystX-SimpleLogin # broken
403CatalystX-Usul # proc::processtable doesn't load
e8ba9394 404Cheater # parse::randgen is broken
405Class-OWL # uses CMOP::Class without loading cmop
406Cogwheel # uses ancient moose apis
0aff3f28 407Config-Model # broken
408Config-Model-Backend-Augeas # deps on Config::Model
409Config-Model-OpenSsh # deps on Config::Model
e8ba9394 410Constructible # GD::SVG is a broken dist
72dc4616 411Constructible-Maxima # GD::SVG is a broken dist
e8ba9394 412Coro-Amazon-SimpleDB # amazon::simpledb::client doesn't exist
4513d67e 413CPAN-Digger # requires DBD::SQLite
72dc4616 414Data-AMF # missing dep on YAML
cf9832d2 415Data-Apache-mod_status # invalid characters in type name
72dc4616 416Data-Edit # dist is missing some modules
b595f862 417Data-Feed # broken (only sometimes?)
cf9832d2 418Data-PackageName # broken
419Data-Pipeline # uses ancient moose apis
72dc4616 420Data-SCORM # pod coverage fail
cf9832d2 421DayDayUp # MojoX-Fixup-XHTML doesn't exist
ec58481b 422DBICx-Modeler-Generator # broken (weirdly)
ec58481b 423DBIx-SchemaChecksum # broken
424Debian-Apt-PM # configure time failures
cf9832d2 425Devel-Events # broken (role conflict)
72dc4616 426Dist-Zilla-Deb # pod coverage fail
427Dist-Zilla-Plugin-ChangelogFromGit-Debian # git::repository is broken
24871830 428Dist-Zilla-Plugin-CheckChangesHasContent # broken
3b1a1b22 429Dist-Zilla-Plugin-Git # tests fail when run in a temp dir
43dff819 430Dist-Zilla-Plugin-PerlTidy # expects to find dzil in the path
cc519dbb 431Dist-Zilla-Plugin-Pinto-Add # deps on Pinto::Common
9acdcfbb 432Dist-Zilla-Plugin-ProgCriticTests # broken
24871830 433Dist-Zilla-Plugin-Test-ReportPrereqs # broken
9acdcfbb 434DustyDB # uses old moose apis
72dc4616 435Dwimmer # broken
72dc4616 436Facebook-Graph # broken
726ade9b 437FCGI-Engine # runs scripts without using $^X
72dc4616 438Fedora-Bugzilla # deps on nonexistent things
ec58481b 439FFmpeg-Thumbnail # undeclared dep
9acdcfbb 440File-DataClass # XML::DTD is a broken dist
72dc4616 441File-Stat-Moose # old moose apis
4de6e6a5 442File-Tail-Dir # intermittent fails (i think)
9acdcfbb 443Form-Factory # uses old moose apis
726ade9b 444Form-Sensible # broken
72dc4616 445FormValidator-Nested # broken
9acdcfbb 446Frost # broken
d1dc6007 447Games-Dice-Loaded # flaky tests
448Gitalist # broken
ec58481b 449GOBO # coerce with no coercion
72dc4616 450Google-Chart # recreating type constraints
9acdcfbb 451Google-Spreadsheet-Agent # pod::coverage fail
9acdcfbb 452Hobocamp # configure_requires needs EU::CChecker
453Horris # App::Horris isn't on cpan
72dc4616 454HTML-Grabber # pod::coverage fail
ec58481b 455HTML-TreeBuilderX-ASP_NET # broken
72dc4616 456HTTP-Engine-Middleware # missing dep on yaml
457Image-Robohash # Graphics::Magick doesn't exist
9acdcfbb 458JavaScript-Framework-jQuery # coerce with no coercion
c62e19f4 459Jenkins-NotificationListener # missing dep on File::Read
72dc4616 460Jifty # Test::WWW::Selenium needs devel::repl
461JSORB # broken
9acdcfbb 462Jungle # broken
463Kamaitachi # pod::coverage fail
464KiokuDB-Backend-Files # broken
b5937bb0 465LaTeX-TikZ # broken (with moose)
0aff3f28 466marc-moose # broken (only sometimes?)
9acdcfbb 467Mail-Summary-Tools # DT::Format::DateManip is broken
468MediaWiki-USERINFO # broken
21f9bca6 469Metabase-Backend-MongoDB # broken
a31ce80a 470Metabase-Backend-SQL # broken (I think)
0aff3f28 471Method-Signatures # doesn't like ANY_MOOSE=Moose
ec58481b 472mobirc # http::engine broken
9acdcfbb 473MooseX-Attribute-Prototype # uses old moose apis
474MooseX-DBIC-Scaffold # needs unreleased sql-translator
9acdcfbb 475MooseX-Documenter # broken
ec58481b 476MooseX-DOM # "no Moose" unimports confess
9acdcfbb 477MooseX-Error-Exception-Class # metaclass compat breakage
72dc4616 478MooseX-Getopt-Usage # missing dep on Test::Class
3b1a1b22 479MooseX-GTIN # broken (under jenkins, at least)
9acdcfbb 480MooseX-Meta-Attribute-Index # old moose apis
481MooseX-Meta-Attribute-Lvalue # old moose apis
67ede39e 482MooseX-Role-XMLRPC-Client # requires LWP::Protocol::http which requires libssl
bab36045 483MooseX-Scaffold # broken
9acdcfbb 484MooseX-Struct # ancient moose apis
72dc4616 485MooseX-Types-Parameterizable # broken
106c1020 486MooseX-WithCache # broken
b5937bb0 487MouseX-Types # broken (with moose)
72dc4616 488MySQL-Util # pod-coverage fail
489Nagios-Passive # broken
b5937bb0 490Net-APNS # broken (with moose)
9acdcfbb 491Net-FluidDB # broken
492Net-Fluidinfo # broken
72dc4616 493Net-Google-Blogger # broken
494Net-Google-FederatedLogin # broken
ec58481b 495NetHack-Item # NH::Monster::Spoiler is broken
496NetHack-Monster-Spoiler # broken (MX::CA issues)
9acdcfbb 497Net-HTTP-Factual # broken
67ede39e 498Net-Jabber-Bot # broken
9acdcfbb 499Net-Journyx # broken
72dc4616 500Net-Mollom # broken
9acdcfbb 501Net-Parliament # broken
502Net-Plurk # broken
2ec35f55 503Net-SSLeay-OO # broken
9acdcfbb 504Net-StackExchange # broken
c62b4642 505Norma # fails when trying to write to a read-only SQLite db file under jenkins, also fails when run manually
9acdcfbb 506ODG-Record # Test::Benchmark broken
ec58481b 507Perlbal-Control # proc::processtable doesn't load
ec58481b 508Pg-BulkCopy # hardcodes /usr/bin/perl
72dc4616 509Pinto-Common # broken
cc519dbb 510Pinto-Remove # deps on Pinto::Common
511Pinto-Server # deps on Pinto::Common
72dc4616 512Plack-Middleware-Image-Scale # Image::Scale is broken
4de6e6a5 513Pod-Parser-I18N # missing dep on Data::Localize
ec58481b 514POE-Component-CPAN-Mirror-Multiplexer # broken
6539278a 515POE-Component-DirWatch # intermittent failures
516POE-Component-DirWatch-Object # intermittent failures
9acdcfbb 517POE-Component-ResourcePool # broken
9acdcfbb 518POE-Component-Server-PSGI # broken deps
ec58481b 519POE-Component-Server-SimpleHTTP-PreFork # broken deps
d1dc6007 520Poet # missing dep on Log::Any::Adapter::Log4perl
9acdcfbb 521POEx-ProxySession # broken deps
522POEx-PubSub # broken deps
523POEx-WorkerPool # broken deps
72dc4616 524PostScript-ScheduleGrid-XMLTV # XMLTV doesn't exist
525PRANG # broken
526Prophet # depends on term::readline::perl
9acdcfbb 527Queue-Leaky # broken
72dc4616 528Railsish # dep on nonexistent dist
9acdcfbb 529RDF-Server # "no Moose" unimports confess
9acdcfbb 530Reaction # signatures is broken
9acdcfbb 531Reflexive-Role-DataMover # broken (reflex::role changes?)
532Reflexive-Role-TCPServer # broken (reflex::role changes?)
72dc4616 533Reflexive-Stream-Filtering # broken
ec58481b 534RPC-Any # broken
9acdcfbb 535Scene-Graph # has '+attr' in roles
9acdcfbb 536Server-Control # proc::processtable doesn't load
0aff3f28 537Shipment # locale::subcountry is broken
72dc4616 538Silki # image::magick is broken
9acdcfbb 539SilkiX-Converter-Kwiki # file::mimeinfo expects (?-xism:
72dc4616 540Sloth # rest::utils is broken
d1dc6007 541Sque # couldn't fork server for testing
ec58481b 542SRS-EPP-Proxy # depends on xml::epp
9acdcfbb 543String-Blender # broken
544TAEB # broken
545Tail-Tool # Getopt::Alt doesn't exist
72dc4616 546Tapper-CLI # sys::info::driver::linux is broken
9acdcfbb 547Tapper-Installer # sys::info::driver::linux is broken
9acdcfbb 548Tapper-MCP-MessageReceiver # sys::info::driver::linux is broken
549Tapper-Reports-API # sys::info::driver::linux is broken
ec58481b 550Tapper-Testplan # sys::info::driver::linux is broken
9acdcfbb 551Telephone-Mnemonic-US # rpm-build-perl is broken
b5937bb0 552Template-Plugin-Heritable # weird dep issues (not test::dm related)
9acdcfbb 553Test-A8N # broken
ec58481b 554Test-Daily # configure errors
72dc4616 555Test-Pockito # broken
ec58481b 556Test-SFTP # Term::ReadPassword prompts in tests
72dc4616 557Test-WWW-Selenium-More # Test::WWW::Selenium needs devel::repl
558Text-Clevery # broken
726ade9b 559Text-Zilla # broken
72dc4616 560Thorium # depends on Hobocamp
9acdcfbb 561TryCatch-Error # broken
72dc4616 562Verby # deps on poe::component::resourcepool
563Weather-TW # missing dep on Mojo::DOM
564Web-API-Mapper # broken
565WebNano-Controller-CRUD # broken
cdb8d8b2 566Webservice-Intermine # broken tests
ec58481b 567WebService-Yes24 # broken
568WiX3 # broken
4513d67e 569WWW-Alltop # XML::SimpleObject configure fail
3b1a1b22 570WWW-Comix # uses ancient Moose::Policy stuff
d1dc6007 571WWW-DataWiki # broken
9acdcfbb 572WWW-Fandango # bad dist
ec58481b 573WWW-FMyLife # broken
0aff3f28 574WWW-Mechanize-Cached # tries to read from wrong build dir?
9acdcfbb 575WWW-Metalgate # Cache is broken
576WWW-Scramble # pod::coverage fail
72dc4616 577WWW-Sitemapper # broken
9acdcfbb 578WWW-StaticBlog # time::sofar is broken
72dc4616 579WWW-WebKit # missing configure_req on EU::PkgConfig
9acdcfbb 580WWW-Yahoo-Lyrics-JP # broken
9acdcfbb 581XIRCD # undeclared deps
582XML-EPP # coerce without coercion
72dc4616 583XML-SRS # deps on prang
2ec35f55 584XML-Writer-Compiler # broken tests
9acdcfbb 585Yukki # git::repository is broken