I'm trying to specify a pre-req to not get superfluous errors
in my tests -- specifically, I need to have
the "Windows" OS module be >= 6.0.0.
I.e. some tests involving / testing for proper output
on STDERR don't work on WinXP -- and since it is
no longer a supported OS, I want to weed out failed tests
from it since I cannot support an OS that is no longer
being maintained.
I tried checking for the OS and BAILING out before
running the test, but BAIL OUT just causes a fail.
Isn't BAILOUT the supported way to abort due to a
due to missing pre-reqs or is there another function
I should be using?