Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 17304 invoked from network); 11 Jul 2004 01:27:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 11 Jul 2004 01:27:01 -0000 Received: (qmail 49358 invoked by uid 500); 11 Jul 2004 01:27:00 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 49330 invoked by uid 500); 11 Jul 2004 01:27:00 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: apreq-dev@httpd.apache.org List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 49317 invoked by uid 500); 11 Jul 2004 01:27:00 -0000 Delivered-To: apmail-httpd-apreq-2-cvs@apache.org Received: (qmail 49308 invoked by uid 99); 11 Jul 2004 01:27:00 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Sat, 10 Jul 2004 18:26:56 -0700 Received: (qmail 17292 invoked by uid 1220); 11 Jul 2004 01:26:55 -0000 Date: 11 Jul 2004 01:26:55 -0000 Message-ID: <20040711012655.17291.qmail@minotaur.apache.org> From: randyk@apache.org To: httpd-apreq-2-cvs@apache.org Subject: cvs commit: httpd-apreq-2/glue/perl/t/apreq request.t X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N randyk 2004/07/10 18:26:55 Modified: glue/perl/t/apreq request.t Log: Reviewed by: joes Upload content without the \r, as Win32 inserts an extra one at the end. Revision Changes Path 1.17 +1 -1 httpd-apreq-2/glue/perl/t/apreq/request.t Index: request.t =================================================================== RCS file: /home/cvs/httpd-apreq-2/glue/perl/t/apreq/request.t,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- request.t 7 Jul 2004 23:53:01 -0000 1.16 +++ request.t 11 Jul 2004 01:26:55 -0000 1.17 @@ -22,7 +22,7 @@ for my $test (qw/slurp bb tempname link fh io bad;query=string%%/) { # upload a string as a file - my $value = ('DataUpload' x 10 . "\r\n") x 1_000; + my $value = ('DataUpload' x 10 . "\n") x 1_000; my $result = UPLOAD_BODY("$location?test=$test", content => $value); ok t_cmp($value, $result, "basic upload"); my $i;