VGR has asked for the wisdom of the Perl Monks concerning the following question:

HI...
I looked around the site for similar problems but it all of them seemed to have no problems during the install..
I am currently using cygwin and i tried installing the SOAP::WSDL module
I tried a force install too but it didn't seem to work!
These are the last few lines from the command line that i got the first time i ran the install from CPAN:
Failed test: 1 Non-zero exit status: 9 Parse errors: Bad plan. You planned 2 tests but ran 1. Files=124, Tests=1083, 45 wallclock secs ( 0.44 usr 0.31 sys + 25.58 +cusr 17.13 csys = 43.46 CPU) Result: FAIL Failed 9/124 test programs. 8/1083 subtests failed. MKUTTER/SOAP-WSDL-2.00.10.tar.gz ./Build test -- NOT OK //hint// to see the cpan-testers results for installing this module, t +ry: reports MKUTTER/SOAP-WSDL-2.00.10.tar.gz Running Build install make test had returned bad status, won't install without force Failed during this command: ABW/Template-Toolkit-2.22.tar.gz : make NO MKUTTER/SOAP-WSDL-2.00.10.tar.gz : make_test NO

Replies are listed 'Best First'.
Re: Problems while installing SOAP::WSDL
by Khen1950fx (Canon) on Feb 17, 2010 at 23:03 UTC
    Try this:
    #!/usr/bin/perl use strict; use warnings; use CPAN; print "perl $]\n"; my (@tools) = ( "AppConfig", "Class::Std::Fast", "Data::Dumper", "Date::Parse", "Date::Format", "Devel::Loaded", "ExtUtils::MakeMaker", "File::Basename", "File::Path", "Getopt::Long", "List::Util", "LWP::UserAgent", "Template", "Term::ReadKey", "URI", "Cwd", "Module::Build", "File::Spec", "SOAP::WSDL", "Storable", "Test::More"); foreach my $tool(@tools) { system("pmpath $tool"); system("pmvers $tool"); CPAN::Shell->install($tool); }