Re: skipping and installing

2004-02-23 Thread Rodent of Unusual Size
Rodent of Unusual Size wrote: 2. t/SKIP (which i haven't used for a long time) seems to have changed behaviour. for instance, t/php runs regardless of whether i have 'php' or 't/php' or anything else mentioning it in t/SKIP. what is the method nowadays to get a test script

Re: skipping and installing

2004-02-23 Thread Rodent of Unusual Size
Rodent of Unusual Size wrote: it looks as though the attached patch will fix this regression.. but is it the appropriate solution? der! would help if i attached it, wouldn't it.. -- #kenP-)} Ken Coar, Sanagendamgagwedweinini http://Golux.Com/coar/ Author, developer, opinionist

Re: skipping and installing

2004-02-23 Thread Geoffrey Young
-$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

Re: skipping and installing

2004-02-23 Thread Geoffrey Young
1. is it possible to run the suite *without* doing a 'make install'? in my development environment i discovered that i had to do that in order oget rid of some cruft left behind from having done a 'make install' in the past. however, i'd prefer to not have to force the

Re: skipping and installing

2004-02-23 Thread Geoffrey Young
-$file ||= 'SKIP'; +$file ||= catfile Apache::Test::vars('serverroot'), 'SKIP'; oops. forgot to add the class up top. guess I'm not quite with it today yet :) --Geoff Index: lib/Apache/TestHarness.pm === RCS file:

Re: skipping and installing

2004-02-23 Thread Stas Bekman
Geoffrey Young wrote: -$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. Index: lib/Apache/TestHarness.pm

Re: skipping and installing

2004-02-23 Thread Geoffrey Young
-$file ||= 'SKIP'; +$file ||= catfile Apache::Test::vars('serverroot'), 'SKIP'; Geoff, you are making a good point of removing the hardcoding of t/ towards the idea of being able to split the test suite. well, it's an idea that we're all working toward, yourself included :)

Re: skipping and installing

2004-02-23 Thread Stas Bekman
Geoffrey Young wrote: -$file ||= 'SKIP'; +$file ||= catfile Apache::Test::vars('serverroot'), 'SKIP'; Geoff, you are making a good point of removing the hardcoding of t/ towards the idea of being able to split the test suite. well, it's an idea that we're all working toward, yourself