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