Add Jenkins-NotificationListener to TODO list
[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-GitFlow              # no tests
203 Dist-Zilla-Plugin-GitFmtChanges        # no tests
204 Dist-Zilla-Plugin-MetaResourcesFromGit # no tests
205 Dist-Zilla-Plugin-ModuleBuild-OptionalXS # no tests
206 Dist-Zilla-Plugin-Rsync                # no tests
207 Dist-Zilla-Plugin-TemplateFile         # no tests
208 Dist-Zilla-Plugin-UploadToDuckPAN      # no tests
209 Finance-Bank-SuomenVerkkomaksut        # no tests
210 Games-HotPotato                        # no tests
211 IO-Storm                               # no tests
212 JIRA-Client-REST                       # no tests
213 Kafka-Client                           # no tests
214 LWP-UserAgent-OfflineCache             # no tests
215 Markdown-Pod                           # no tests
216 MooseX-Types-DateTimeX                 # no tests
217 MooseX-Types-DateTime-MoreCoercions    # no tests unless DateTime::Format::DateManip is installed
218 Net-Azure-BlobService                  # no tests
219 Net-Dropbox                            # no tests
220 Net-Flowdock                           # no tests
221 Net-OpenStack-Attack                   # no tests
222 Net-Ostrich                            # no tests
223 Net-Recurly                            # no tests
224 OpenDocument-Template                  # no tests
225 Pod-Weaver-Section-Consumes            # no tests
226 Pod-Weaver-Section-Encoding            # no tests
227 Pod-Weaver-Section-Extends             # no tests
228 POE-Component-Server-MySQL             # no tests
229 Random-Quantum                         # no tests
230 SchemaEvolution                        # no tests
231 STD                                    # no tests
232 Test-System                            # no tests
233 Test-WWW-Mechanize-Dancer              # no tests
234 WebService-Buxfer                      # no tests
235 WebService-CloudFlare-Host             # no tests
236 WWW-MenuGrinder                        # no tests
237 WWW-WuFoo                              # no tests
238
239 # SKIP: external dependencies
240 AnyEvent-MSN                           # requires Net::SSLeay (which requires libssl)
241 AnyEvent-Multilog                      # requires multilog
242 AnyEvent-Net-Curl-Queued               # requires libcurl
243 AnyEvent-ZeroMQ                        # requires zeromq installation
244 AnyMQ-ZeroMQ                           # requires zeromq installation
245 Apache2-HttpEquiv                      # requires apache (for mod_perl)
246 App-Mimosa                             # requires fastacmd
247 App-PgCryobit                          # requires postgres installation
248 App-SimplenoteSync                     # requires File::ExtAttr which requires libattr
249 Archive-RPM                            # requires cpio
250 Bot-Jabbot                             # requires libidn
251 Catalyst-Engine-Stomp                  # depends on alien::activemq
252 Catalyst-Plugin-Session-Store-Memcached # requires memcached
253 Cave-Wrapper                           # requires cave to be installed
254 CHI-Driver-Redis                       # requires redis server
255 Crypt-Random-Source-Strong-Win32       # windows only
256 Curses-Toolkit                         # requires Curses which requires ncurses library
257 Dackup                                 # requires ssh
258 Data-Collector                         # requires ssh
259 DBIx-PgLink                            # requires postgres installation
260 Dist-Zilla-Plugin-Subversion           # requires svn bindings
261 Dist-Zilla-Plugin-SVK                  # requires svn bindings
262 Dist-Zilla-Plugin-SvnObtain            # requires svn bindings
263 Fedora-App-MaintainerTools             # requires rpm to be installed
264 Fedora-App-ReviewTool                  # requires koji to be installed
265 Fuse-Template                          # requires libfuse
266 Games-HotPotato                        # requires sdl
267 Games-Tetris-Complete                  # requires threads
268 helm                                   # requires ssh
269 HTML-Barcode-QRCode                    # requires libqrencode
270 IRC-RemoteControl                      # requires libssh2
271 JavaScript-Sprockets                   # requires sprocketize
272 JavaScript-V8x-TestMoreish             # requires v8
273 Koha-Contrib-Tamil                     # requires yaz
274 K                                      # requires kx
275 Lighttpd-Control                       # requires lighttpd
276 Lingua-TreeTagger                      # requires treetagger to be installed
277 Math-Lsoda                             # requires f77
278 MongoDBI                               # requires mongo
279 MongoDB                                # requires mongo
280 MSWord-ToHTML                          # requires abiword to be installed
281 Net-DBus-Skype                         # requires dbus
282 Net-Route                              # requires route
283 Net-SFTP-Foreign-Exceptional           # depends on running ssh
284 Net-UpYun                              # requires curl
285 Net-ZooTool                            # requires curl
286 Nginx-Control                          # requires nginx to be installed
287 NLP-Service                            # requires javac
288 Padre-Plugin-Cookbook                  # requires Wx
289 Padre-Plugin-Moose                     # requires threaded perl
290 Padre-Plugin-PDL                       # requires threaded perl
291 Padre-Plugin-Snippet                   # requires threaded perl
292 Paludis-UseCleaner                     # depends on cave::wrapper
293 Perlanet                               # HTML::Tidy requires tidyp
294 Perl-Dist-Strawberry-BuildPerl-5123    # windows only
295 Perl-Dist-Strawberry-BuildPerl-5123    # windows only
296 Perl-Dist-WiX-BuildPerl-5123           # windows only
297 Perl-Dist-WiX                          # windows only
298 Perl-Dist-WiX                          # windows only
299 POE-Component-OpenSSH                  # requires ssh
300 RDF-TrineX-RuleEngine-Jena             # requires Jena
301 SimpleDB-Class                         # requires memcached
302 SVN-Simple-Hook                        # requires svn
303 SVN-Tree                               # requires svn
304 Tapper-MCP                             # depends on everything under the sun - some of which is broken
305 Template-JavaScript                    # requires v8
306 TheSchwartz-Moosified                  # requires DBI::Pg ?
307 WebService-SendGrid                    # requires curl
308 WebService-Tesco-API                   # requires curl
309 WWW-Contact                            # depends on curl
310 WWW-Curl-Simple                        # requires curl
311 ZeroMQ-PubSub                          # requires zmq
312 ZMQ-Declare                            # requires zmq
313
314 # SKIP: flaky internet tests
315 iTransact-Lite                         # tests rely on internet site
316 Unicode-Emoji-E4U                      # tests rely on internet site
317 WWW-eNom                               # tests rely on internet site
318 WWW-Finances-Bovespa                   # tests rely on internet site
319 WWW-Vimeo-Download                     # tests rely on internet site
320 WWW-YouTube-Download-Channel           # tests rely on internet site
321
322 # SKIP: graphical
323 App-CPAN2Pkg                           # tk tests are graphical
324 App-USBKeyCopyCon                      # gtk tests are graphical
325 CatalystX-Restarter-GTK                # gtk tests are graphical
326 Forest-Tree-Viewer-Gtk2                # gtk tests are graphical
327 Games-Pandemic                         # tk tests are graphical
328 Games-RailRoad                         # tk tests are graphical
329 Games-Risk                             # tk tests are graphical
330 Log-Dispatch-Gtk2-Notify               # gtk tests are graphical
331 LPDS                                   # gtk tests are graphical
332 Periscope                              # gtk tests are graphical
333 Tk-Role-Dialog                         # tk tests are graphical
334 Weaving-Tablet                         # tk tests are graphical
335
336 # SKIP: prompts (or a dep prompts) or does something else dumb
337 Bot-Backbone                           # poe-loop-ev prompts
338 Cache-Ehcache                          # hangs if server exists on port 8080
339 CM-Permutation                         # OpenGL uses graphics in Makefile.PL
340 Date-Biorhythm                         # Date::Business prompts in Makefile.PL
341 DBIx-VersionedDDL                      # runs a script with /usr/bin/perl in the shbang line
342 File-Tail-Scribe                       # tests hang
343 Gearman-Driver                         # spews tar errors
344 IPC-AnyEvent-Gearman                   # tests hang
345 Net-SSH-Mechanize                      # the mock-ssh script it runs seems to spin endlessly
346 POE-Component-Server-SimpleHTTP-PreFork # tests hang
347 WWW-Hashdb                             # test hangs, pegging cpu
348 Zucchini                               # File::Rsync prompts in Makefile.PL
349
350 # TODO: failing for a reason
351 Algorithm-KernelKMeans                 # mx-types-common changes broke it
352 AnyEvent-BitTorrent                    # broken
353 AnyEvent-Cron                          # intermittent failures
354 AnyEvent-Inotify-Simple                # ??? (maybe issue with test::sweet)
355 AnyEvent-JSONRPC                       # tests require recommended deps
356 AnyEvent-Retry                         # mx-types-common changes broke it
357 AnyMongo                               # doesn't compile
358 App-ArchiveDevelCover                  # depends on nonexistent testdata::setup
359 App-Dataninja                          # bad M::I install in inc/
360 App-Fotagger                           # Imager doesn't compile
361 App-Magpie                             # deps on URPM which doesn't exist
362 App-MediaWiki2Git                      # git::repository is broken
363 App-Munchies                           # depends on XML::DTD
364 App-TemplateServer                     # broken use of types
365 App-TemplateServer-Provider-HTML-Template  # dep on app-templateserver
366 App-TemplateServer-Provider-Mason      # dep on app-templateserver
367 App-TemplateServer-Provider-TD         # dep on app-templateserver
368 App-Twimap                             # dep on Web::oEmbed::Common
369 App-Validation-Automation              # dep on Switch
370 App-Wubot                              # broken
371 Beagle                                 # depends on term::readline::perl
372 Cache-Profile                          # broken
373 Catalyst-Authentication-Store-LDAP-AD-Class  # pod coverage fail
374 Catalyst-Controller-Resources          # broken
375 Catalyst-Controller-SOAP               # broken
376 Catalyst-Model-Sedna                   # deps on Alien-Sedna which doesn't exist
377 Catalyst-Plugin-Continuation           # undeclared dep
378 Catalyst-Plugin-Session-State-Cookie   # broken
379 Catalyst-Plugin-Session-Store-TestMemcached # dep with corrupt archive
380 Catalyst-Plugin-SwiffUploaderCookieHack  # undeclared dep
381 Catalyst-TraitFor-Request-PerLanguageDomains # dep on ::State::Cookie
382 CatalystX-I18N                         # dep on ::State::Cookie
383 CatalystX-MooseComponent               # broken
384 CatalystX-SimpleLogin                  # broken
385 CatalystX-Usul                         # proc::processtable doesn't load
386 Cheater                                # parse::randgen is broken
387 Class-OWL                              # uses CMOP::Class without loading cmop
388 Cogwheel                               # uses ancient moose apis
389 Config-Model                           # broken
390 Config-Model-Backend-Augeas            # deps on Config::Model
391 Config-Model-OpenSsh                   # deps on Config::Model
392 Constructible                          # GD::SVG is a broken dist
393 Constructible-Maxima                   # GD::SVG is a broken dist
394 Coro-Amazon-SimpleDB                   # amazon::simpledb::client doesn't exist
395 CPAN-Digger                            # requires DBD::SQLite
396 Data-AMF                               # missing dep on YAML
397 Data-Apache-mod_status                 # invalid characters in type name
398 Data-Edit                              # dist is missing some modules
399 Data-Feed                              # broken (only sometimes?)
400 Data-PackageName                       # broken
401 Data-Pipeline                          # uses ancient moose apis
402 Data-SCORM                             # pod coverage fail
403 DayDayUp                               # MojoX-Fixup-XHTML doesn't exist
404 DBICx-Modeler-Generator                # broken (weirdly)
405 DBIx-SchemaChecksum                    # broken
406 Debian-Apt-PM                          # configure time failures
407 Devel-Events                           # broken (role conflict)
408 Dist-Zilla-Deb                         # pod coverage fail
409 Dist-Zilla-Plugin-ChangelogFromGit-Debian # git::repository is broken
410 Dist-Zilla-Plugin-CheckChangesHasContent  # broken
411 Dist-Zilla-Plugin-PerlTidy             # expects to find dzil in the path
412 Dist-Zilla-Plugin-ProgCriticTests      # broken
413 Dist-Zilla-Plugin-Test-ReportPrereqs   # broken
414 DustyDB                                # uses old moose apis
415 Dwimmer                                # broken
416 Facebook-Graph                         # broken
417 FCGI-Engine                            # runs scripts without using $^X
418 Fedora-Bugzilla                        # deps on nonexistent things
419 FFmpeg-Thumbnail                       # undeclared dep
420 File-DataClass                         # XML::DTD is a broken dist
421 File-Stat-Moose                        # old moose apis
422 File-Tail-Dir                          # intermittent fails (i think)
423 Form-Factory                           # uses old moose apis
424 Form-Sensible                          # broken
425 FormValidator-Nested                   # broken
426 Frost                                  # broken
427 Games-Dice-Loaded                      # flaky tests
428 Gitalist                               # broken
429 GOBO                                   # coerce with no coercion
430 Google-Chart                           # recreating type constraints
431 Google-Spreadsheet-Agent               # pod::coverage fail
432 Hobocamp                               # configure_requires needs EU::CChecker
433 Horris                                 # App::Horris isn't on cpan
434 HTML-Grabber                           # pod::coverage fail
435 HTML-TreeBuilderX-ASP_NET              # broken
436 HTTP-Engine-Middleware                 # missing dep on yaml
437 Image-Robohash                         # Graphics::Magick doesn't exist
438 JavaScript-Framework-jQuery            # coerce with no coercion
439 Jenkins-NotificationListener           # missing dep on File::Read
440 Jifty                                  # Test::WWW::Selenium needs devel::repl
441 JSORB                                  # broken
442 Jungle                                 # broken
443 Kamaitachi                             # pod::coverage fail
444 KiokuDB-Backend-Files                  # broken
445 LaTeX-TikZ                             # broken (with moose)
446 marc-moose                             # broken (only sometimes?)
447 Mail-Summary-Tools                     # DT::Format::DateManip is broken
448 MediaWiki-USERINFO                     # broken
449 Metabase-Backend-MongoDB               # broken
450 Metabase-Backend-SQL                   # broken (I think)
451 Method-Signatures                      # doesn't like ANY_MOOSE=Moose
452 mobirc                                 # http::engine broken
453 MooseX-Attribute-Prototype             # uses old moose apis
454 MooseX-DBIC-Scaffold                   # needs unreleased sql-translator
455 MooseX-Documenter                      # broken
456 MooseX-DOM                             # "no Moose" unimports confess
457 MooseX-Error-Exception-Class           # metaclass compat breakage
458 MooseX-Getopt-Usage                    # missing dep on Test::Class
459 MooseX-Meta-Attribute-Index            # old moose apis
460 MooseX-Meta-Attribute-Lvalue           # old moose apis
461 MooseX-Role-XMLRPC-Client              # requires LWP::Protocol::http which requires libssl
462 MooseX-Scaffold                        # broken
463 MooseX-Struct                          # ancient moose apis
464 MooseX-Types-Parameterizable           # broken
465 MooseX-WithCache                       # broken
466 MouseX-Types                           # broken (with moose)
467 MySQL-Util                             # pod-coverage fail
468 Nagios-Passive                         # broken
469 Net-APNS                               # broken (with moose)
470 Net-FluidDB                            # broken
471 Net-Fluidinfo                          # broken
472 Net-Google-Blogger                     # broken
473 Net-Google-FederatedLogin              # broken
474 NetHack-Item                           # NH::Monster::Spoiler is broken
475 NetHack-Monster-Spoiler                # broken (MX::CA issues)
476 Net-HTTP-Factual                       # broken
477 Net-Jabber-Bot                         # broken
478 Net-Journyx                            # broken
479 Net-Mollom                             # broken
480 Net-Parliament                         # broken
481 Net-Plurk                              # broken
482 Net-SSLeay-OO                          # broken
483 Net-StackExchange                      # broken
484 Norma                                  # fails when trying to write to a read-only SQLite db file under jenkins, also fails when run manually
485 ODG-Record                             # Test::Benchmark broken
486 Perlbal-Control                        # proc::processtable doesn't load
487 Pg-BulkCopy                            # hardcodes /usr/bin/perl
488 Pinto-Common                           # broken
489 Pinto-Server                           # deps on pinto::common
490 Plack-Middleware-Image-Scale           # Image::Scale is broken
491 Pod-Parser-I18N                        # missing dep on Data::Localize
492 POE-Component-CPAN-Mirror-Multiplexer  # broken
493 POE-Component-DirWatch                 # intermittent failures
494 POE-Component-DirWatch-Object          # intermittent failures
495 POE-Component-ResourcePool             # broken
496 POE-Component-Server-PSGI              # broken deps
497 POE-Component-Server-SimpleHTTP-PreFork  # broken deps
498 Poet                                   # missing dep on Log::Any::Adapter::Log4perl
499 POEx-ProxySession                      # broken deps
500 POEx-PubSub                            # broken deps
501 POEx-WorkerPool                        # broken deps
502 PostScript-ScheduleGrid-XMLTV          # XMLTV doesn't exist
503 PRANG                                  # broken
504 Prophet                                # depends on term::readline::perl
505 Queue-Leaky                            # broken
506 Railsish                               # dep on nonexistent dist
507 RDF-Server                             # "no Moose" unimports confess
508 Reaction                               # signatures is broken
509 Reflexive-Role-DataMover               # broken (reflex::role changes?)
510 Reflexive-Role-TCPServer               # broken (reflex::role changes?)
511 Reflexive-Stream-Filtering             # broken
512 RPC-Any                                # broken
513 Scene-Graph                            # has '+attr' in roles
514 Server-Control                         # proc::processtable doesn't load
515 Shipment                               # locale::subcountry is broken
516 Silki                                  # image::magick is broken
517 SilkiX-Converter-Kwiki                 # file::mimeinfo expects (?-xism:
518 Sloth                                  # rest::utils is broken
519 Sque                                   # couldn't fork server for testing
520 SRS-EPP-Proxy                          # depends on xml::epp
521 String-Blender                         # broken
522 TAEB                                   # broken
523 Tail-Tool                              # Getopt::Alt doesn't exist
524 Tapper-CLI                             # sys::info::driver::linux is broken
525 Tapper-Installer                       # sys::info::driver::linux is broken
526 Tapper-MCP-MessageReceiver             # sys::info::driver::linux is broken
527 Tapper-Reports-API                     # sys::info::driver::linux is broken
528 Tapper-Testplan                        # sys::info::driver::linux is broken
529 Telephone-Mnemonic-US                  # rpm-build-perl is broken
530 Template-Plugin-Heritable              # weird dep issues (not test::dm related)
531 Test-A8N                               # broken
532 Test-Daily                             # configure errors
533 Test-Pockito                           # broken
534 Test-SFTP                              # Term::ReadPassword prompts in tests
535 Test-WWW-Selenium-More                 # Test::WWW::Selenium needs devel::repl
536 Text-Clevery                           # broken
537 Text-Zilla                             # broken
538 Thorium                                # depends on Hobocamp
539 TryCatch-Error                         # broken
540 Verby                                  # deps on poe::component::resourcepool
541 Weather-TW                             # missing dep on Mojo::DOM
542 Web-API-Mapper                         # broken
543 WebNano-Controller-CRUD                # broken
544 Webservice-Intermine                   # broken tests
545 WebService-Yes24                       # broken
546 WiX3                                   # broken
547 WWW-Alltop                             # XML::SimpleObject configure fail
548 WWW-DataWiki                           # broken
549 WWW-Fandango                           # bad dist
550 WWW-FMyLife                            # broken
551 WWW-Mechanize-Cached                   # tries to read from wrong build dir?
552 WWW-Metalgate                          # Cache is broken
553 WWW-Scramble                           # pod::coverage fail
554 WWW-Sitemapper                         # broken
555 WWW-StaticBlog                         # time::sofar is broken
556 WWW-WebKit                             # missing configure_req on EU::PkgConfig
557 WWW-Yahoo-Lyrics-JP                    # broken
558 XIRCD                                  # undeclared deps
559 XML-EPP                                # coerce without coercion
560 XML-SRS                                # deps on prang
561 XML-Writer-Compiler                    # broken tests
562 Yukki                                  # git::repository is broken