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