Hmm I guess I'm confused then. The only way I've generated TAP in the past is by using Test:More either ok() or is() or something to test values. Given that the existing .t files don't return predictable values, the only thing I could test for would be the TAP output that the test cases contained within are producing.
How would running all of the .t files using TAP::Harness from within a .t file, rather than from the main script give me any different output?
The only way I can imagine getting a different output would be to run it something like this:
set SDTOUT to a file
for each .t file
run .t
parse output file
for each line do either:
is(1,1,testcasename) or is(1,0,testcasename)
next file
What is is that you're suggesting?
|