Also related to my previous post: is it possible to force the installation of a perl Cpan module if some tests fail? How can I do that if this is possible?
jnx: you can easily do this by adding in cpan shell force in front of your install command:
perl -MCPAN -e shell force install <module> Still you would want to be sure that the tests that are failing are not important. If so you might want to fix the problem why the tests are failing in the first place.
Thank you, but I didn't need this after all since I installed the Data::Dump module as you suggested in the other thread and the installation went fine after that.