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