Ovid wrote:
--- Adam Kennedy <[EMAIL PROTECTED]> wrote:
One of the principles of PITA is that we do as little as possible
inside the operating system image.
That includes NOT calculating a judgement call for "PASS" or "FAIL"
or at least ignoring it if it gets done.
From reading the PITA docs, I *think* I know what you're talking about,
but I'm not sure.
So the way I need to handle this is to run the tests, but to keep a
complete copy of the test output. And NOT to do this by doing verbose
mode and trying to reverse engineer the output.
Well, you'd need to write your own test harness for that.
My main problem is that I can't write anything of my own.
The test sequence tries to stay as close to the default as possible.
Which means all I can do is:
perl Makefile.PL
make
make test
make install
So rather than writing my own harness, I actually need to try and get
support added to the existing harnesses. I can upgrade them before I run
that sequence, but I can ONLY run that sequence, I don't interface via
my own Perl.
Adam K