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