Add MooseX-WithCache to list of TODO deps
[gitmo/Moose.git] / xt / author / test-my-dependents.t
index 092bf90..92b2112 100644 (file)
@@ -5,16 +5,34 @@ use Cwd qw( abs_path );
 use Test::More;
 
 BEGIN {
-    plan skip_all => 'This test will not run unless you set MOOSE_TEST_MD to a true value'
+    my $help = <<'EOF';
+
+
+  This test will not run unless you set MOOSE_TEST_MD to a true value.
+  Valid values are:
+
+     all     Test every distro which depends on Moose except those that we know
+             cannot be tested. This is a lot of distros (thousands).
+
+     MooseX  Test all Moose extension distros
+             (MooseX modules plus a few others).
+
+     $true   Any other true value runs the default tests. We pick 200 random
+             distros and test them.
+
+EOF
+
+    plan skip_all => $help
         unless $ENV{MOOSE_TEST_MD};
 }
 
 use Test::Requires {
-    'Archive::Zip' => 0, # or else .zip dists won't be able to be installed
-    'Test::DependentModules' => '0.09', # skip all if not installed
-    'MetaCPAN::API' => '0.33',
+    'Archive::Zip' => 0,    # or else .zip dists won't be able to be installed
+    'Test::DependentModules' => '0.13',
+    'MetaCPAN::API'          => '0.33',
 };
-use Test::DependentModules qw( test_all_dependents test_modules );
+
+use Test::DependentModules qw( test_module );
 
 use DateTime;
 use List::MoreUtils qw(any);
@@ -23,11 +41,13 @@ use Moose ();
 diag(     'Test run performed at: '
         . DateTime->now
         . ' with Moose '
-        . Moose->VERSION );
+        . (Moose->VERSION || 'git repo') );
 
 $ENV{PERL_TEST_DM_LOG_DIR} = abs_path('.');
 delete @ENV{ qw( AUTHOR_TESTING RELEASE_TESTING SMOKE_TESTING ) };
 
+$ENV{ANY_MOOSE} = 'Moose';
+
 my $mcpan = MetaCPAN::API->new;
 my $res = $mcpan->post(
     '/release/_search' => {
@@ -40,6 +60,7 @@ my $res = $mcpan->post(
                 { term => { 'release.dependency.module' => 'Moose::Exporter' } },
                 { term => { 'release.dependency.module' => 'Class::MOP' } },
                 { term => { 'release.dependency.module' => 'MooseX::Role::Parameterized' } },
+                { term => { 'release.dependency.module' => 'Any::Moose' } },
             ] },
             { term => { 'release.status'   => 'latest' } },
             { term => { 'release.maturity' => 'released' } },
@@ -48,358 +69,472 @@ my $res = $mcpan->post(
     }
 );
 
-my %skip = map { $_ => 1 } grep { /\w/ } map { chomp; s/\s*#.*$//; $_ } <DATA>;
 my @skip_prefix = qw(Acme Task Bundle);
+my %skip;
+my %todo;
+
+my $hash;
+for my $line (<DATA>) {
+    chomp $line;
+    next unless $line =~ /\S/;
+    if ( $line =~ /^# (\w+)/ ) {
+        die "Invalid action in DATA section ($1)"
+            unless $1 eq 'SKIP' || $1 eq 'TODO';
+        $hash = $1 eq 'SKIP' ? \%skip : \%todo;
+    }
+
+    my ( $dist, $reason ) = $line =~ /^(\S*)\s*(?:#\s*(.*)\s*)?$/;
+    next unless defined $dist && length $dist;
+
+    $hash->{$dist} = $reason;
+}
+
 my %name_fix = (
+    'App-passmanager'                => 'App::PassManager',
     'App-PipeFilter'                 => 'App::PipeFilter::Generic',
     'Constructible'                  => 'Constructible::Maxima',
     'DCOLLINS-ANN-Locals'            => 'DCOLLINS::ANN::Robot',
     'Dist-Zilla-Deb'                 => 'Dist::Zilla::Plugin::Deb::VersionFromChangelog',
-    'Dist-Zilla-Plugin-TemplateFile' => 'Dist::Zilla::Plugin::TemplateFiles',
     'Dist-Zilla-Plugins-CJM'         => 'Dist::Zilla::Plugin::TemplateCJM',
-    'OWL-Simple'                     => 'OWL::Simple::Class',
-    'Patterns-ChainOfResponsibility' => 'Patterns::ChainOfResponsibility::Application',
-    'Role-Identifiable'              => 'Role::Identifiable::HasIdent',
-    'X11-XCB'                        => 'X11::XCB::Connection',
-    'XML-Ant-BuildFile'              => 'XML::Ant::BuildFile::Project',
+    'Dist-Zilla-Plugin-TemplateFile' => 'Dist::Zilla::Plugin::TemplateFiles',
+    'Google-Directions'              => 'Google::Directions::Client',
     'helm'                           => 'Helm',
+    'HTML-Untemplate'                => 'HTML::Linear',
     'marc-moose'                     => 'MARC::Moose',
     'mobirc'                         => 'App::Mobirc',
+    'OWL-Simple'                     => 'OWL::Simple::Class',
+    'Patterns-ChainOfResponsibility' => 'Patterns::ChainOfResponsibility::Application',
+    'Pod-Elemental-Transfomer-VimHTML' => 'Pod::Elemental::Transformer::VimHTML',
+    'Role-Identifiable'              => 'Role::Identifiable::HasIdent',
     'smokebrew'                      => 'App::SmokeBrew',
+    'Treex-Parser-MSTperl'           => 'Treex::Tool::Parser::MSTperl',
     'v6-alpha'                       => 'v6',
+    'WebService-LOC-CongRec'         => 'WebService::LOC::CongRec::Crawler',
+    'X11-XCB'                        => 'X11::XCB::Connection',
+    'XML-Ant-BuildFile'              => 'XML::Ant::BuildFile::Project',
 );
-my @modules = map  { exists $name_fix{$_} ? $name_fix{$_} : $_ }
-              sort
-              grep { !$skip{$_} }
-              grep { my $dist = $_; !any { $dist =~ /^$_-/ } @skip_prefix }
-              map  { $_->{fields}{distribution} }
-              @{ $res->{hits}{hits} };
 
-plan tests => scalar @modules;
-test_modules(@modules);
+my @dists = sort
+            grep { !$skip{$_} }
+            grep { my $dist = $_; !any { $dist =~ /^$_-/ } @skip_prefix }
+            map  { $_->{fields}{distribution} }
+            @{ $res->{hits}{hits} };
 
-# Modules that are known to fail
-# PRANG - failing for quite some time (since before 2.0400)
+if ( $ENV{MOOSE_TEST_MD} eq 'MooseX' ) {
+    @dists = grep { /^(?:MooseX-|Fey-ORM)/ } @dists;
+}
+elsif ( $ENV{MOOSE_TEST_MD} ne 'all' ) {
+    diag(
+        'Picking 200 random dependents to test. Set MOOSE_TEST_MD=all to test all dependents'
+    );
+
+    my %indexes;
+    while ( keys %indexes < 200 ) {
+        $indexes{ int rand( scalar @dists ) } = 1;
+    }
+
+    @dists = @dists[ sort keys %indexes ];
+}
+
+plan tests => scalar @dists;
+for my $dist (@dists) {
+    note($dist);
+    my $module = $dist;
+    $module = $name_fix{$module} if exists $name_fix{$module};
+    if ($todo{$dist}) {
+        my $reason = $todo{$dist};
+        $reason = '???' unless defined $reason;
+        local $TODO = $reason;
+        eval { test_module($module); 1 }
+            or fail("Died when testing $module: $@");
+    }
+    else {
+        eval { test_module($module); 1 }
+            or fail("Died when testing $module: $@");
+    }
+}
 
 __DATA__
-# won't build, for actual reasons:
-App-CPAN2Pkg                           # Tk doesn't compile
-App-Fotagger                           # Imager doesn't compile
-Black-Board                            # not found on cpan because of mxd
-CM-Permutation                         # OpenGL uses graphics in Makefile.PL
-Dackup                                 # depends on running ssh
-Date-Biorhythm                         # Date::Business prompts in Makefile.PL
-Data-Collector                         # depends on running ssh
-POE-Component-OpenSSH                  # depends on running ssh
-Perl-Dist-Strawberry-BuildPerl-5123    # windows only
-Perl-Dist-WiX                          # windows only
-Perl-Dist-WiX-BuildPerl-5123           # windows only
-Test-SFTP                              # Term::ReadPassword prompts in tests
-VirtualBox-Manage                      # not found on cpan because of mxd
-helm                                   # depends on running ssh
-
-# won't build, for unknown reasons
-App-HistHub                            # ???
-App-Twitch                             # ???
-CPAN-Patches                           # ???
-CPAN-Patches-Plugin-Debian             # ???
-Debian-Apt-PM                          # ???
-Dist-Zilla-Plugin-BuildSelf            # ???
-Dist-Zilla-Plugin-ModuleBuildTiny      # ???
-Dist-Zilla-Plugin-Test-DistManifest    # ???
-Dist-Zilla-Plugin-Test-Portability     # ???
-Dist-Zilla-Plugin-Test-Synopsis        # ???
-Dist-Zilla-Plugin-Test-UnusedVars      # ???
-Lingua-TreeTagger                      # ???
-POE-Component-CPAN-Mirror-Multiplexer  # ???
-POE-Component-Client-CouchDB           # ???
-POE-Component-Github                   # ???
-POE-Component-Metabase-Relay-Server    # ???
-POE-Component-Server-SimpleHTTP-PreFork  # ???
-Tapper-Testplan                        # ??? (hangs)
-Test-Daily                             # ???
-WWW-Alltop                             # ???
-WWW-Hashdb                             # ??? (hangs, pegging cpu)
-WebService-Async                       # ??? (hangs, pegging cpu)
-WebService-LOC-CongRec                 # ???
-Zucchini                               # ??? (hangs)
-
-# not in cpan index for some reason
-Hopkins                                # not found on cpan (?)
-PostScript-Barcode                     # not found on cpan (?)
-
-# failing for a reason
+# SKIP: indexing issues (test::dm bugs?)
+Alice                                  # couldn't find on cpan
+Hopkins                                # couldn't find on cpan
+PostScript-Barcode                     # couldn't find on cpan
+WWW-Mechanize-Query                    # couldn't find on cpan
+
+# SKIP: doesn't install deps properly (test::dm bugs?)
+App-Benchmark-Accessors                # Mojo::Base isn't installed
+Bot-BasicBot-Pluggable                 # Crypt::SaltedHash isn't installed
+Code-Statistics                        # MooseX::HasDefaults::RO isn't installed
+Dist-Zilla-PluginBundle-MITHALDU       # List::AllUtils isn't installed
+Dist-Zilla-Util-FileGenerator          # MooseX::HasDefaults::RO isn't installed
+EBI-FGPT-FuzzyRecogniser               # GO::Parser isn't installed
+Erlang-Parser                          # Parse::Yapp::Driver isn't installed
+Foorum                                 # Sphinx::Search isn't installed
+Grimlock                               # DBIx::Class::EncodedColumn isn't installed
+Locale-Handle-Pluggable                # MooseX::Types::VariantTable::Declare isn't installed
+mobirc                                 # HTTP::Session::State::GUID isn't installed
+Net-Bamboo                             # XML::Tidy isn't installed
+Tatsumaki-Template-Markapl             # Tatsumaki::Template isn't installed
+Text-Tradition                         # Bio::Phylo::IO isn't installed
+WebService-Strava                      # Any::URI::Escape isn't installed
+
+# SKIP: no tests
 AI-ExpertSystem-Advanced               # no tests
 API-Assembla                           # no tests
+App-mkfeyorm                           # no tests
+App-passmanager                        # no tests
+App-Scrobble                           # no tests
+Bot-Applebot                           # no tests
+Catalyst-Authentication-Credential-Facebook-OAuth2 # no tests
+Catalyst-Authentication-Store-Fey-ORM  # no tests
+Catalyst-Controller-MovableType        # no tests
+Catalyst-Model-MenuGrinder             # no tests
+Chef                                   # no tests
+Data-SearchEngine-ElasticSearch        # no tests
+Dist-Zilla-MintingProfile-Author-ARODLAND # no tests
+Dist-Zilla-PluginBundle-ARODLAND       # no tests
+Dist-Zilla-PluginBundle-Author-OLIVER  # no tests
+Dist-Zilla-PluginBundle-NUFFIN         # no tests
+Dist-Zilla-Plugin-DualLife             # no tests
+Dist-Zilla-Plugin-GitFlow              # no tests
+Dist-Zilla-Plugin-GitFmtChanges        # no tests
+Dist-Zilla-Plugin-MetaResourcesFromGit # no tests
+Dist-Zilla-Plugin-ModuleBuild-OptionalXS # no tests
+Dist-Zilla-Plugin-Rsync                # no tests
+Dist-Zilla-Plugin-TemplateFile         # no tests
+Dist-Zilla-Plugin-UploadToDuckPAN      # no tests
+Finance-Bank-SuomenVerkkomaksut        # no tests
+Games-HotPotato                        # no tests
+IO-Storm                               # no tests
+JIRA-Client-REST                       # no tests
+Kafka-Client                           # no tests
+LWP-UserAgent-OfflineCache             # no tests
+Markdown-Pod                           # no tests
+MooseX-Types-DateTimeX                 # no tests
+MooseX-Types-DateTime-MoreCoercions    # no tests unless DateTime::Format::DateManip is installed
+Net-Azure-BlobService                  # no tests
+Net-Dropbox                            # no tests
+Net-Flowdock                           # no tests
+Net-OpenStack-Attack                   # no tests
+Net-Ostrich                            # no tests
+Net-Recurly                            # no tests
+OpenDocument-Template                  # no tests
+Pod-Weaver-Section-Consumes            # no tests
+Pod-Weaver-Section-Encoding            # no tests
+Pod-Weaver-Section-Extends             # no tests
+POE-Component-Server-MySQL             # no tests
+Random-Quantum                         # no tests
+SchemaEvolution                        # no tests
+STD                                    # no tests
+Test-System                            # no tests
+Test-WWW-Mechanize-Dancer              # no tests
+WebService-Buxfer                      # no tests
+WebService-CloudFlare-Host             # no tests
+WWW-MenuGrinder                        # no tests
+WWW-WuFoo                              # no tests
+
+# SKIP: external dependencies
+AnyEvent-MSN                           # requires Net::SSLeay (which requires libssl)
+AnyEvent-Multilog                      # requires multilog
+AnyEvent-Net-Curl-Queued               # requires libcurl
+AnyEvent-ZeroMQ                        # requires zeromq installation
+AnyMQ-ZeroMQ                           # requires zeromq installation
+Apache2-HttpEquiv                      # requires apache (for mod_perl)
+App-Mimosa                             # requires fastacmd
+App-PgCryobit                          # requires postgres installation
+Archive-RPM                            # requires cpio
+Bot-Jabbot                             # requires libidn
+Catalyst-Engine-Stomp                  # depends on alien::activemq
+Catalyst-Plugin-Session-Store-Memcached # requires memcached
+Cave-Wrapper                           # requires cave to be installed
+CHI-Driver-Redis                       # requires redis server
+Crypt-Random-Source-Strong-Win32       # windows only
+Curses-Toolkit                         # requires Curses which requires ncurses library
+Dackup                                 # requires ssh
+Data-Collector                         # requires ssh
+DBIx-PgLink                            # requires postgres installation
+Dist-Zilla-Plugin-Subversion           # requires svn bindings
+Dist-Zilla-Plugin-SVK                  # requires svn bindings
+Dist-Zilla-Plugin-SvnObtain            # requires svn bindings
+Fedora-App-MaintainerTools             # requires rpm to be installed
+Fedora-App-ReviewTool                  # requires koji to be installed
+Fuse-Template                          # requires libfuse
+Games-HotPotato                        # requires sdl
+Games-Tetris-Complete                  # requires threads
+helm                                   # requires ssh
+HTML-Barcode-QRCode                    # requires libqrencode
+IRC-RemoteControl                      # requires libssh2
+JavaScript-Sprockets                   # requires sprocketize
+JavaScript-V8x-TestMoreish             # requires v8
+Koha-Contrib-Tamil                     # requires yaz
+K                                      # requires kx
+Lighttpd-Control                       # requires lighttpd
+Lingua-TreeTagger                      # requires treetagger to be installed
+Math-Lsoda                             # requires f77
+MongoDBI                               # requires mongo
+MongoDB                                # requires mongo
+MSWord-ToHTML                          # requires abiword to be installed
+Net-DBus-Skype                         # requires dbus
+Net-Route                              # requires route
+Net-SFTP-Foreign-Exceptional           # depends on running ssh
+Net-UpYun                              # requires curl
+Net-ZooTool                            # requires curl
+Nginx-Control                          # requires nginx to be installed
+NLP-Service                            # requires javac
+Padre-Plugin-Moose                     # requires threaded perl
+Padre-Plugin-PDL                       # requires threaded perl
+Padre-Plugin-Snippet                   # requires threaded perl
+Paludis-UseCleaner                     # depends on cave::wrapper
+Perlanet                               # HTML::Tidy requires tidyp
+Perl-Dist-Strawberry-BuildPerl-5123    # windows only
+Perl-Dist-Strawberry-BuildPerl-5123    # windows only
+Perl-Dist-WiX-BuildPerl-5123           # windows only
+Perl-Dist-WiX                          # windows only
+Perl-Dist-WiX                          # windows only
+POE-Component-OpenSSH                  # requires ssh
+RDF-TrineX-RuleEngine-Jena             # requires Jena
+SimpleDB-Class                         # requires memcached
+SVN-Simple-Hook                        # requires svn
+SVN-Tree                               # requires svn
+Template-JavaScript                    # requires v8
+TheSchwartz-Moosified                  # requires DBI::Pg ?
+WebService-SendGrid                    # requires curl
+WebService-Tesco-API                   # requires curl
+WWW-Contact                            # depends on curl
+WWW-Curl-Simple                        # requires curl
+ZeroMQ-PubSub                          # requires zmq
+ZMQ-Declare                            # requires zmq
+
+# SKIP: flaky internet tests
+iTransact-Lite                         # tests rely on internet site
+Unicode-Emoji-E4U                      # tests rely on internet site
+WWW-eNom                               # tests rely on internet site
+WWW-Finances-Bovespa                   # tests rely on internet site
+WWW-Vimeo-Download                     # tests rely on internet site
+WWW-YouTube-Download-Channel           # tests rely on internet site
+
+# SKIP: graphical
+App-CPAN2Pkg                           # tk tests are graphical
+App-USBKeyCopyCon                      # gtk tests are graphical
+CatalystX-Restarter-GTK                # gtk tests are graphical
+Forest-Tree-Viewer-Gtk2                # gtk tests are graphical
+Games-Pandemic                         # tk tests are graphical
+Games-RailRoad                         # tk tests are graphical
+Games-Risk                             # tk tests are graphical
+Log-Dispatch-Gtk2-Notify               # gtk tests are graphical
+LPDS                                   # gtk tests are graphical
+Periscope                              # gtk tests are graphical
+Tk-Role-Dialog                         # tk tests are graphical
+Weaving-Tablet                         # tk tests are graphical
+
+# SKIP: prompts (or a dep prompts) or does something else dumb
+Bot-Backbone                           # poe-loop-ev prompts
+Cache-Ehcache                          # hangs if server exists on port 8080
+CM-Permutation                         # OpenGL uses graphics in Makefile.PL
+Date-Biorhythm                         # Date::Business prompts in Makefile.PL
+Gearman-Driver                         # spews tar errors
+Net-SSH-Mechanize                      # the mock-ssh script it runs seems to spin endlessly
+WWW-Hashdb                             # test hangs, pegging cpu
+Zucchini                               # File::Rsync prompts in Makefile.PL
+
+# TODO: failing for a reason
 Algorithm-KernelKMeans                 # mx-types-common changes broke it
+AnyEvent-BitTorrent                    # broken
+AnyEvent-Cron                          # intermittent failures
 AnyEvent-Inotify-Simple                # ??? (maybe issue with test::sweet)
 AnyEvent-JSONRPC                       # tests require recommended deps
 AnyEvent-Retry                         # mx-types-common changes broke it
-AnyEvent-ZeroMQ                        # requires zeromq installation
+AnyMongo                               # doesn't compile
+App-ArchiveDevelCover                  # depends on nonexistent testdata::setup
 App-Dataninja                          # bad M::I install in inc/
-App-ForExample                         # getopt::chain is broken
+App-Fotagger                           # Imager doesn't compile
 App-Magpie                             # deps on URPM which doesn't exist
-App-PgCryobit                          # requires postgres installation
+App-MediaWiki2Git                      # git::repository is broken
+App-Munchies                           # depends on XML::DTD
 App-TemplateServer                     # broken use of types
 App-TemplateServer-Provider-HTML-Template  # dep on app-templateserver
 App-TemplateServer-Provider-Mason      # dep on app-templateserver
 App-TemplateServer-Provider-TD         # dep on app-templateserver
-App-TimeTracker                        # git::repository is broken
-App-USBKeyCopyCon                      # gtk tests are graphical
-App-mkfeyorm                           # no tests
-Archive-RPM                            # requires cpio
-Bio-MAGETAB                            # datetime-format-datemanip is broken
-Bot-Applebot                           # no tests
-Bot-Backbone                           # broken deps
-Business-UPS-Tracking                  # broken
-CHI-Driver-Redis                       # requires redis server
-CPAN-Mini-Webserver                    # undeclared dep on lingua-stopwords
+App-Twimap                             # dep on Web::oEmbed::Common
+App-Validation-Automation              # dep on Switch
+App-Wubot                              # broken
+Beagle                                 # depends on term::readline::perl
 Cache-Profile                          # broken
-Catalyst-Authentication-Credential-Facebook-OAuth2  # no tests
-Catalyst-Authentication-Store-Fey-ORM  # no tests
 Catalyst-Authentication-Store-LDAP-AD-Class  # pod coverage fail
-Catalyst-Controller-MovableType        # no tests
 Catalyst-Controller-Resources          # broken
-
-# dep resolution failures or something (these pass when run manually)
-AXL-Client-Simple
-Alien-ActiveMQ
-Alien-Ditaa
-App-Benchmark-Accessors
-Bot-BasicBot-Pluggable
-Bot-BasicBot-Pluggable-Module-JIRA
-CPAN-Digger
-Cantella-Worker
-Cantella-Worker-Role-Beanstalk
-
-# failing for some reason or another (need to look into this)
-Catalyst-Engine-Stomp
-Catalyst-Model-MenuGrinder
-Catalyst-Model-Search-ElasticSearch
-Catalyst-Model-Sedna
-Catalyst-Plugin-Continuation
-Catalyst-Plugin-ErrorCatcher-ActiveMQ-Stomp
-Catalyst-Plugin-Session
-Catalyst-Plugin-SwiffUploaderCookieHack
-Catalyst-TraitFor-Component-ConfigPerSite
-Catalyst-TraitFor-Controller-jQuery-jqGrid
-Catalyst-View-ByCode
-Catalyst-View-RDF
-CatalystX-Declare
-CatalystX-MooseComponent
-CatalystX-Restarter-GTK
-CatalystX-RoleApplicator
-CatalystX-SimpleAPI
-CatalystX-SimpleLogin
-CatalystX-Syntax-Action
-CatalystX-Usul
-Cave-Wrapper
-Chart-Clicker
-Chart-Weather-Forecast
-Cheater
-Chef
-Class-OWL
-Code-Statistics
-Cogwheel
-Constructible
-Coro-Amazon-SimpleDB
-Crypt-PBKDF2
-Curses-Toolkit
-DBICx-Modeler-Generator
-DBIx-Class-DeploymentHandler
-DBIx-PgLink
-DBIx-SchemaChecksum
-Data-Apache-mod_status
-Data-PackageName
-Data-Pipeline
-Data-SearchEngine-ElasticSearch
-DayDayUp
-Devel-Events
-Devel-IntelliPerl
-Dist-Zilla-Plugin-DualLife
-Dist-Zilla-Plugin-GitFlow
-Dist-Zilla-Plugin-MetaResourcesFromGit
-Dist-Zilla-Plugin-ProgCriticTests
-Dist-Zilla-Plugin-Rsync
-Dist-Zilla-Plugin-SVK
-Dist-Zilla-Plugin-Test-CPAN-Changes
-Dist-Zilla-Plugin-Test-Kwalitee
-Dist-Zilla-PluginBundle-ARODLAND
-Dist-Zilla-PluginBundle-Author-OLIVER
-Dist-Zilla-PluginBundle-FLORA
-Dist-Zilla-PluginBundle-NIGELM
-Dist-Zilla-PluginBundle-NUFFIN
-Dist-Zilla-PluginBundle-RBUELS
-DustyDB
-ELF-Extract-Sections
-ETLp
-FCGI-Engine
-FFmpeg-Thumbnail
-Fedora-App-MaintainerTools
-Fedora-App-ReviewTool
-Fey-SQL-Pg
-File-DataClass
-Finance-Bank-SentinelBenefits-Csv401kConverter
-Finance-Bank-SuomenVerkkomaksut
-Forest-Tree-Viewer-Gtk2
-Form-Factory
-Frost
-GOBO
-Games-AssaultCube
-Games-HotPotato
-Games-Pandemic
-Games-RailRoad
-Games-Risk
-Games-Tetris-Complete
-Gearman-Driver
-Geo-Calc
-Getopt-Chain
-Gitalist
-Google-Spreadsheet-Agent
-Grades
-Graphics-Primitive-Driver-Cairo
-Graphics-Primitive-Driver-CairoPango
-HTML-FormHandler
-HTML-FormHandler-Model-DBIC
-HTML-TreeBuilderX-ASP_NET
-Hobocamp
-Horris
-IM-Engine-Plugin-Dispatcher
-IMS-CP-Manifest
-IO-Multiplex-Intermediary
-Image-Placeholder
-JavaScript-Framework-jQuery
-Jungle
-Kafka-Client
-Kamaitachi
-KiokuDB-Backend-BDB
-KiokuDB-Backend-Files
-LWP-UserAgent-OfflineCache
-Locale-Handle-Pluggable
-Locale-MO-File
-Log-Dispatch-Gtk2-Notify
-MSWord-ToHTML
-Mail-Summary-Tools
-Mason
-MediaWiki-USERINFO
-Mildew
-MooseX-APIRole
-MooseX-Attribute-Prototype
-MooseX-AutoImmute
-MooseX-DBIC-Scaffold
-MooseX-DOM
-MooseX-Declare
-MooseX-Documenter
-MooseX-Error-Exception-Class
-MooseX-Meta-Attribute-Index
-MooseX-Meta-Attribute-Lvalue
-MooseX-Method-Signatures
-MooseX-MultiMethods
-MooseX-MultiObject
-MooseX-POE
-MooseX-Params
-MooseX-Struct
-MooseX-TrackDirty-Attributes
-MooseX-Workers
-Net-Douban
-Net-Dropbox
-Net-FluidDB
-Net-Fluidinfo
-Net-HTTP-Factual
-Net-Journyx
-Net-Parliament
-Net-Plurk
-Net-Recurly
-Net-StackExchange
-Net-Topsy
-NetHack-Item
-NetHack-Monster-Spoiler
-Nginx-Control
-ODG-Record
-POE-Component-Client-MPD
-POE-Component-DirWatch
-POE-Component-DirWatch-Object
-POE-Component-IRC-Plugin-Role
-POE-Component-MessageQueue
-POE-Component-ResourcePool
-POE-Component-Server-MySQL
-POE-Component-Server-PSGI
-POE-Component-Server-SimpleHTTP
-POE-Test-Helpers
-POEx-ProxySession
-POEx-PubSub
-POEx-WorkerPool
-Paludis-UseCleaner
-Parse-CPAN-Ratings
-Parse-FixedRecord
-Perlanet
-Perlbal-Control
-Pg-BulkCopy
-Pod-Weaver-Section-Encoding
-Proc-Safetynet
-Queue-Leaky
-RDF-Server
-RPC-Any
-Random-Quantum
-Reaction
-Reflex
-Reflexive-Role-Collective
-Reflexive-Role-DataMover
-Reflexive-Role-TCPServer
-Reflexive-Stream-Filtering
-SRS-EPP-Proxy
-STD
-Scene-Graph
-Schedule-Pluggable
-SchemaEvolution
-Server-Control
-SilkiX-Converter-Kwiki
-SimpleDB-Class
-String-Blender
-TAEB
-Tail-Tool
-Tapper-Installer
-Tapper-MCP
-Tapper-MCP-MessageReceiver
-Tapper-Reports-API
-Telephone-Mnemonic-US
-Template-Plugin-Heritable
-Test-A8N
-Test-BDD-Cucumber
-Test-Sweet
-Test-System
-Thorium
-Tk-Role-Dialog
-TryCatch
-TryCatch-Error
-VANAMBURG-SEMPROG-SimpleGraph
-VCI
-Verby
-W3C-XMLSchema
-WWW-FMyLife
-WWW-Fandango
-WWW-Getsy
-WWW-Getsy
-WWW-Mechanize-Cached
-WWW-MenuGrinder
-WWW-Metalgate
-WWW-Scramble
-WWW-StaticBlog
-WWW-Yahoo-Lyrics-JP
-Weaving-Tablet
-WebNano-Controller-CRUD
-WebService-Buxfer
-WebService-CloudFlare-Host
-WebService-SlimTimer
-WebService-Yes24
-WiX3
-XIRCD
-XML-Ant-BuildFile
-XML-EPP
-XML-LibXSLT-Easy
-XML-Rabbit
-XML-Schematron
-YUM-RepoQuery
-Yukki
-mobirc
-namespace-alias
+Catalyst-Controller-SOAP               # broken
+Catalyst-Model-Sedna                   # deps on Alien-Sedna which doesn't exist
+Catalyst-Plugin-Continuation           # undeclared dep
+Catalyst-Plugin-Session-State-Cookie   # broken
+Catalyst-Plugin-Session-Store-TestMemcached # dep with corrupt archive
+Catalyst-Plugin-SwiffUploaderCookieHack  # undeclared dep
+Catalyst-TraitFor-Request-PerLanguageDomains # dep on ::State::Cookie
+CatalystX-I18N                         # dep on ::State::Cookie
+CatalystX-MooseComponent               # broken
+CatalystX-SimpleLogin                  # broken
+CatalystX-Usul                         # proc::processtable doesn't load
+Cheater                                # parse::randgen is broken
+Class-OWL                              # uses CMOP::Class without loading cmop
+Cogwheel                               # uses ancient moose apis
+Config-Model                           # broken
+Config-Model-Backend-Augeas            # deps on Config::Model
+Config-Model-OpenSsh                   # deps on Config::Model
+Constructible                          # GD::SVG is a broken dist
+Constructible-Maxima                   # GD::SVG is a broken dist
+Coro-Amazon-SimpleDB                   # amazon::simpledb::client doesn't exist
+CPAN-Digger                            # requires DBD::SQLite
+Data-AMF                               # missing dep on YAML
+Data-Apache-mod_status                 # invalid characters in type name
+Data-Edit                              # dist is missing some modules
+Data-Feed                              # broken (only sometimes?)
+Data-PackageName                       # broken
+Data-Pipeline                          # uses ancient moose apis
+Data-SCORM                             # pod coverage fail
+DayDayUp                               # MojoX-Fixup-XHTML doesn't exist
+DBICx-Modeler-Generator                # broken (weirdly)
+DBIx-SchemaChecksum                    # broken
+Debian-Apt-PM                          # configure time failures
+Devel-Events                           # broken (role conflict)
+Dist-Zilla-Deb                         # pod coverage fail
+Dist-Zilla-Plugin-ChangelogFromGit-Debian # git::repository is broken
+Dist-Zilla-Plugin-ProgCriticTests      # broken
+DustyDB                                # uses old moose apis
+Dwimmer                                # broken
+Facebook-Graph                         # broken
+Fedora-Bugzilla                        # deps on nonexistent things
+FFmpeg-Thumbnail                       # undeclared dep
+File-DataClass                         # XML::DTD is a broken dist
+File-Stat-Moose                        # old moose apis
+File-Tail-Dir                          # intermittent fails (i think)
+Form-Factory                           # uses old moose apis
+FormValidator-Nested                   # broken
+Frost                                  # broken
+Games-Dice-Loaded                      # flaky tests
+Gitalist                               # broken
+GOBO                                   # coerce with no coercion
+Google-Chart                           # recreating type constraints
+Google-Spreadsheet-Agent               # pod::coverage fail
+Hobocamp                               # configure_requires needs EU::CChecker
+Horris                                 # App::Horris isn't on cpan
+HTML-Grabber                           # pod::coverage fail
+HTML-TreeBuilderX-ASP_NET              # broken
+HTTP-Engine-Middleware                 # missing dep on yaml
+Image-Robohash                         # Graphics::Magick doesn't exist
+JavaScript-Framework-jQuery            # coerce with no coercion
+Jifty                                  # Test::WWW::Selenium needs devel::repl
+JSORB                                  # broken
+Jungle                                 # broken
+Kamaitachi                             # pod::coverage fail
+KiokuDB-Backend-Files                  # broken
+LaTeX-TikZ                             # broken (with moose)
+marc-moose                             # broken (only sometimes?)
+Mail-Summary-Tools                     # DT::Format::DateManip is broken
+MediaWiki-USERINFO                     # broken
+Method-Signatures                      # doesn't like ANY_MOOSE=Moose
+mobirc                                 # http::engine broken
+MooseX-Attribute-Prototype             # uses old moose apis
+MooseX-DBIC-Scaffold                   # needs unreleased sql-translator
+MooseX-Documenter                      # broken
+MooseX-DOM                             # "no Moose" unimports confess
+MooseX-Error-Exception-Class           # metaclass compat breakage
+MooseX-Getopt-Usage                    # missing dep on Test::Class
+MooseX-Meta-Attribute-Index            # old moose apis
+MooseX-Meta-Attribute-Lvalue           # old moose apis
+MooseX-Struct                          # ancient moose apis
+MooseX-Types-Parameterizable           # broken
+MooseX-WithCache                       # broken
+MouseX-Types                           # broken (with moose)
+MySQL-Util                             # pod-coverage fail
+Nagios-Passive                         # broken
+Net-APNS                               # broken (with moose)
+Net-FluidDB                            # broken
+Net-Fluidinfo                          # broken
+Net-Google-Blogger                     # broken
+Net-Google-FederatedLogin              # broken
+NetHack-Item                           # NH::Monster::Spoiler is broken
+NetHack-Monster-Spoiler                # broken (MX::CA issues)
+Net-HTTP-Factual                       # broken
+Net-Journyx                            # broken
+Net-Mollom                             # broken
+Net-Parliament                         # broken
+Net-Plurk                              # broken
+Net-SSLeay-OO                          # broken
+Net-StackExchange                      # broken
+Norma                                  # fails when trying to write to a read-only SQLite db file under jenkins, also fails when run manually
+ODG-Record                             # Test::Benchmark broken
+Perlbal-Control                        # proc::processtable doesn't load
+Pg-BulkCopy                            # hardcodes /usr/bin/perl
+Pinto-Common                           # broken
+Pinto-Server                           # deps on pinto::common
+Plack-Middleware-Image-Scale           # Image::Scale is broken
+Pod-Parser-I18N                        # missing dep on Data::Localize
+POE-Component-CPAN-Mirror-Multiplexer  # broken
+POE-Component-DirWatch                 # intermittent failures
+POE-Component-DirWatch-Object          # intermittent failures
+POE-Component-ResourcePool             # broken
+POE-Component-Server-PSGI              # broken deps
+POE-Component-Server-SimpleHTTP-PreFork  # broken deps
+Poet                                   # missing dep on Log::Any::Adapter::Log4perl
+POEx-ProxySession                      # broken deps
+POEx-PubSub                            # broken deps
+POEx-WorkerPool                        # broken deps
+PostScript-ScheduleGrid-XMLTV          # XMLTV doesn't exist
+PRANG                                  # broken
+Prophet                                # depends on term::readline::perl
+Queue-Leaky                            # broken
+Railsish                               # dep on nonexistent dist
+RDF-Server                             # "no Moose" unimports confess
+Reaction                               # signatures is broken
+Reflexive-Role-DataMover               # broken (reflex::role changes?)
+Reflexive-Role-TCPServer               # broken (reflex::role changes?)
+Reflexive-Stream-Filtering             # broken
+RPC-Any                                # broken
+Scene-Graph                            # has '+attr' in roles
+Server-Control                         # proc::processtable doesn't load
+Shipment                               # locale::subcountry is broken
+Silki                                  # image::magick is broken
+SilkiX-Converter-Kwiki                 # file::mimeinfo expects (?-xism:
+Sloth                                  # rest::utils is broken
+Sque                                   # couldn't fork server for testing
+SRS-EPP-Proxy                          # depends on xml::epp
+String-Blender                         # broken
+TAEB                                   # broken
+Tail-Tool                              # Getopt::Alt doesn't exist
+Tapper-CLI                             # sys::info::driver::linux is broken
+Tapper-Installer                       # sys::info::driver::linux is broken
+Tapper-MCP-MessageReceiver             # sys::info::driver::linux is broken
+Tapper-Reports-API                     # sys::info::driver::linux is broken
+Tapper-Testplan                        # sys::info::driver::linux is broken
+Telephone-Mnemonic-US                  # rpm-build-perl is broken
+Template-Plugin-Heritable              # weird dep issues (not test::dm related)
+Test-A8N                               # broken
+Test-Daily                             # configure errors
+Test-Pockito                           # broken
+Test-SFTP                              # Term::ReadPassword prompts in tests
+Test-WWW-Selenium-More                 # Test::WWW::Selenium needs devel::repl
+Text-Clevery                           # broken
+Thorium                                # depends on Hobocamp
+TryCatch-Error                         # broken
+Verby                                  # deps on poe::component::resourcepool
+Weather-TW                             # missing dep on Mojo::DOM
+Web-API-Mapper                         # broken
+WebNano-Controller-CRUD                # broken
+Webservice-Intermine                   # broken tests
+WebService-Yes24                       # broken
+WiX3                                   # broken
+WWW-Alltop                             # XML::SimpleObject configure fail
+WWW-DataWiki                           # broken
+WWW-Fandango                           # bad dist
+WWW-FMyLife                            # broken
+WWW-Mechanize-Cached                   # tries to read from wrong build dir?
+WWW-Metalgate                          # Cache is broken
+WWW-Scramble                           # pod::coverage fail
+WWW-Sitemapper                         # broken
+WWW-StaticBlog                         # time::sofar is broken
+WWW-WebKit                             # missing configure_req on EU::PkgConfig
+WWW-Yahoo-Lyrics-JP                    # broken
+XIRCD                                  # undeclared deps
+XML-EPP                                # coerce without coercion
+XML-SRS                                # deps on prang
+XML-Writer-Compiler                    # broken tests
+Yukki                                  # git::repository is broken