in reply to Debugging during make test

Is there a way to invoke the Perl debugger during a "make test" session?

This will generally do what you're asking for:

prove -b -d -v t/001.some_test.t

Update: Misremembered what I actually do. More like this:

perl -Mblib -d t/001.some_test.t

-xdg

Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.