cvs commit: modperl-2.0/Apache-Test/t TEST ping.t request.t

2001-04-02 Thread dougm
dougm 01/04/02 02:01:25 Added: Apache-Test/t TEST ping.t request.t Log: test test files Revision ChangesPath 1.1 modperl-2.0/Apache-Test/t/TEST Index: TEST === #!perl use

cvs commit: modperl/t/modules request.t

2000-09-27 Thread dougm
dougm 00/09/27 13:04:01 Modified:t/modules request.t Log: binmode for win32 Revision ChangesPath 1.10 +1 -0 modperl/t/modules/request.t Index: request.t === RCS file: /home/cvs/modperl

Re: Patch to t/modules/request.t

2000-08-30 Thread Doug MacEachern
this thread is pretty large, i'm sure the fix is nice and small, anybody have a patch with the final solution? thanks.

Re: Patch to t/modules/request.t

2000-08-30 Thread Doug MacEachern
On Thu, 31 Aug 2000, Ken Williams wrote: [EMAIL PROTECTED] (Doug MacEachern) wrote: this thread is pretty large, i'm sure the fix is nice and small, anybody have a patch with the final solution? thanks. Sounds so ominous... =) didn't mean it to, i'm just buried and looking for any

cvs commit: modperl/t/modules request.t

2000-08-30 Thread dougm
dougm 00/08/30 22:54:11 Modified:.Changes t/modules request.t Log: modules/request test fix Revision ChangesPath 1.510 +3 -0 modperl/Changes Index: Changes === RCS

Re: Patch to t/modules/request.t

2000-08-27 Thread Ken Williams
[EMAIL PROTECTED] (Rick Myers) wrote: I would lean towards the second one since upload_test() is called similarly from three different places within request.t. The reasoning behind suggesting `while defined FH' was that the interaction with $_ appears to be unintentional, at least within

Re: Patch to t/modules/request.t

2000-08-27 Thread Rick Myers
On Aug 27, 2000 at 12:17:41 -0500, Ken Williams twiddled the keys to say: [EMAIL PROTECTED] (Rick Myers) wrote: I would lean towards the second one since upload_test() is called similarly from three different places within request.t. The reasoning behind suggesting `while defined FH

Re: Patch to t/modules/request.t

2000-08-26 Thread Stas Bekman
' about 'Value of HANDLE construct can be "0";'. No biggie, but it should be fixed. --- t/modules/request.t 2000/05/12 03:43:24 1.8 +++ t/modules/request.t 2000/08/24 06:07:40 @@ -125,7 +125,7 @@

Re: Patch to t/modules/request.t

2000-08-26 Thread Rick Myers
the keys to say: The following patch eliminates a warning during 'make test' about 'Value of HANDLE construct can be "0";'. No biggie, but it should be fixed. --- t/modules/request.t 2000/05/12 03:43:

Re: Patch to t/modules/request.t

2000-08-25 Thread Rick Myers
uot;0";'. No biggie, but it should be fixed. --- t/modules/request.t 2000/05/12 03:43:24 1.8 +++ t/modules/request.t 2000/08/24 06:07:40 @@ -125,7 +125,7 @@ my $lines = 0; local *FH; open FH, $f

Re: Patch to t/modules/request.t

2000-08-25 Thread Billy Donahue
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 25 Aug 2000, Rick Myers wrote: From: Rick Myers [EMAIL PROTECTED] On Aug 24, 2000 at 23:15:15 -0500, Ken Williams twiddled the keys to say: [EMAIL PROTECTED] (Rick Myers) wrote: +++$lines while defined FH; THAT's weird -

Re: Patch to t/modules/request.t

2000-08-25 Thread Rick Myers
On Aug 25, 2000 at 21:02:32 -0400, Billy Donahue twiddled the keys to say: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 25 Aug 2000, Rick Myers wrote: From: Rick Myers [EMAIL PROTECTED] On Aug 24, 2000 at 23:15:15 -0500, Ken Williams twiddled the keys to say: [EMAIL

Re: Patch to t/modules/request.t

2000-08-25 Thread Rick Myers
_=0}' produces an infinite loop perl -e 'for ($_=0;$_5;$_++) {test($_)} print "OK\n"; sub test {local $_=0}' OK Nevertheless, the real problem in request.t is still the `while FH'. Rick Myers[EMAIL PROTECTED] --

Re: Patch to t/modules/request.t

2000-08-24 Thread Rick Myers
___ --- t/modules/request.t 2000/05/12 03:43:24 1.8 +++ t/modules/request.t 2000/08/24 06:07:40 @@ -125,7 +125,7 @@ my $lines = 0; local *FH; open FH, $file or die "open $file $!"; -++$lines while (my $dummy = FH); +++$lines while FH; close F

Re: Patch to t/modules/request.t

2000-08-24 Thread Ken Williams
d be fixed. --- t/modules/request.t 2000/05/12 03:43:24 1.8 +++ t/modules/request.t 2000/08/24 06:07:40 @@ -125,7 +125,7 @@ my $lines = 0; local *FH; open FH, $file or die "open $file $!"; -++$lines while (my $dummy = FH); +

Patch to t/modules/request.t

2000-08-24 Thread Ken Williams
The following patch eliminates a warning during 'make test' about 'Value of HANDLE construct can be "0";'. No biggie, but it should be fixed. --- t/modules/request.t 2000/05/12 03:43:24 1.8 +++ t/modules/request.t

Re: request.t

2000-04-02 Thread Doug MacEachern
applied to cvs, thanks Rick!