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