> - $file ||= 'SKIP'; > + $file ||= 't/SKIP'; excellent, thanks for tracking that down.
we just need to be a bit more platform independent. if you could verify that the attached patch works ok for you, I'll commit it. --Geoff
Index: lib/Apache/TestHarness.pm =================================================================== RCS file: /home/cvspublic/httpd-test/perl-framework/Apache-Test/lib/Apache/TestHarness.pm,v retrieving revision 1.13 diff -u -r1.13 TestHarness.pm --- lib/Apache/TestHarness.pm 31 Jan 2004 01:12:17 -0000 1.13 +++ lib/Apache/TestHarness.pm 23 Feb 2004 17:40:32 -0000 @@ -23,7 +23,7 @@ #skip tests listed in t/SKIP sub skip { my($self, $file) = @_; - $file ||= 'SKIP'; + $file ||= catfile Apache::Test::vars('serverroot'), 'SKIP'; return unless -e $file;