PERL: Test::Simple, Time::HiRes, and Test::Harness, and Test::Deep and Devel-CheckLib have cirular dependencies. How to resolve them?
MakeMaker was the source of some of the problems. One of the tests failed. I simply had to install to get MM available for the other packages. But these other packages had dependencies on one another.
I am getting @include errors because the modules aren’t available. Usually that means add a path to $PERL5Lib or $LD_LIBRARY_PATH, but the modules aren’t installed yet.
The tests return messages like these:
t/Legacy/overload.t …………………………
Dubious, test returned 2 (wstat 512, 0x200)
No subtests run
t/Legacy/overload_threads.t ………………….
Dubious, test returned 2 (wstat 512, 0x200)
No subtests run
t/Legacy/plan.t …………………………….
Dubious, test returned 2 (wstat 512, 0x200)
No subtests run
All fail. It may be due to @include errors–that’s usually why the tests fail in my experience.
How should I resolve these dependencies?