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