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

2004-02-19 Thread Randy Kobes
On Tue, 17 Feb 2004, Stas Bekman wrote: Randy Kobes wrote: 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

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

2004-02-19 Thread Stas Bekman
Randy Kobes wrote: Thanks for testing, Randy +for my $key (keys %conf_opts) { +next unless Apache::TestConfig::conf_opt_is_a_filepath($key); +$conf_opts{$key} = Win32::GetShortPathName($conf_opts{$key}); ^^^ I

[STATUS] (perl-framework) Wed Feb 18 23:46:43 EST 2004

2004-02-19 Thread Rodent of Unusual Size
httpd-test/perl-framework STATUS: -*-text-*- Last modified at [$Date: 2002/03/09 05:22:48 $] Stuff to do: * finish the t/TEST exit code issue (ORed with 0x2C if framework failed) * change existing tests that frob the DocumentRoot (e.g.,

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

2004-02-19 Thread Stas Bekman
Randy Kobes wrote: On Wed, 18 Feb 2004, Stas Bekman wrote: Randy Kobes wrote: Thanks for testing, Randy +for my $key (keys %conf_opts) { +next unless Apache::TestConfig::conf_opt_is_a_filepath($key); +$conf_opts{$key} = Win32::GetShortPathName($conf_opts{$key}); [

Re: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestRun.pm TestSSLCA.pm

2004-02-19 Thread Stas Bekman
Stas Bekman wrote: [EMAIL PROTECTED] wrote: stas2004/02/09 10:07:49 Modified:perl-framework/Apache-Test/lib/Apache TestRun.pm TestSSLCA.pm Log: more t/ related fixes $self-{reconfigure} = $opts{configure} || (grep { $opts{$_}-[0] }

Re: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfig.pm

2004-02-19 Thread Geoffrey Young
+(my $generated = $File::Find::name) =~ s/\.in$//; +push @need_update, $generated +unless -e $generated -M $generated -M $File::Find::name; -if (my $extra_conf = $self-generate_extra_conf) { -for my $file (@$extra_conf) { -

Re: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfig.pm

2004-02-19 Thread Stas Bekman
Geoffrey Young wrote: +(my $generated = $File::Find::name) =~ s/\.in$//; +push @need_update, $generated +unless -e $generated -M $generated -M $File::Find::name; -if (my $extra_conf = $self-generate_extra_conf) { -for my $file (@$extra_conf) { -

Re: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfig.pm

2004-02-19 Thread Geoffrey Young
you flipped the logic here. it needs to be unless -e $generated -M $generated -M $File::Find::name I don't think so. The two snippets you quoted above aren't the same. I've changed the functionality and changed the order of the arguments. ok, I see now. when I ran my own logic

Re: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfig.pm

2004-02-19 Thread Stas Bekman
Geoffrey Young wrote: you flipped the logic here. it needs to be unless -e $generated -M $generated -M $File::Find::name I don't think so. The two snippets you quoted above aren't the same. I've changed the functionality and changed the order of the arguments. ok, I see now. when I ran my