Re: Apache::TestTrace: changing non-coloured tracing prefices

2004-02-03 Thread Geoffrey Young
So it'll look like: [warning] setting ulimit to allow core files ulimit -c unlimited; /home/stas/perl/5.8.1-ithread-nouseshrplib/bin/perl5.8.1 t/TEST -trace=debug [debug] isolated httpd_info VERSION = Apache/2.0.49-dev [...] [crit] generating conf/httpd.conf that's really a critical

Re: Apache::TestMM::generate_script vs. Win32 Paths

2004-02-03 Thread Randy Kobes
On Tue, 3 Feb 2004, Christopher H. Laco wrote: I've installed Apache::Test 1.07 on ActiveState perl 5.6.1 build 630 and am trying to make test scripts for a pile of pages in a package I'm workin on. If I pass in an -httpd path that has spaces in the path, it fails. use

Re: Apache::TestMM::generate_script vs. Win32 Paths

2004-02-03 Thread Christopher H. Laco
This case should be handled I'd think on the Apache::Test side. Does my $exe = 'C:\Program Files\Apache Group\Apache\Apache.exe'; $exe = Win32::GetShortPathName($exe); push @ARGV, '-httpd', $exe; work? If so, I'll look at seeing where this could be added within Apache::Test. -- best

Re: Apache::TestMM::generate_script vs. Win32 Paths

2004-02-03 Thread Christopher H. Laco
And just for the curious person in me, calling: Win32::GetShortPathName( Win32::GetShortPathName( $path_to_exe ) ); yields the same result as Win32::GetShortPathName( $path_to_exe ); So no worries about adding this to my Makefile.PL AND having Apache::Test possibly call it again further down