in reply to Re^2: Getting test status with Test::More
in thread Getting test status with Test::More

$? should be set, this come from http://perldoc.perl.org/perlmod.html:

"Inside an END code block, $? contains the value that the program is going to pass to exit(). You can modify $? to change the exit value of the program. Beware of changing $? by accident (e.g. by running something via system)."

  • Comment on Re^3: Getting test status with Test::More