Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4B8416D0B for ; Tue, 28 Jun 2011 14:38:23 +0000 (UTC) Received: (qmail 8523 invoked by uid 500); 28 Jun 2011 14:38:22 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 8246 invoked by uid 500); 28 Jun 2011 14:38:21 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 8237 invoked by uid 99); 28 Jun 2011 14:38:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jun 2011 14:38:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jun 2011 14:38:20 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 579E3238890D for ; Tue, 28 Jun 2011 14:38:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1140645 - /tomcat/trunk/test/org/apache/catalina/core/TestSwallowAbortedUploads.java Date: Tue, 28 Jun 2011 14:38:00 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110628143800.579E3238890D@eris.apache.org> Author: markt Date: Tue Jun 28 14:37:59 2011 New Revision: 1140645 URL: http://svn.apache.org/viewvc?rev=1140645&view=rev Log: Increase size of file the test tries to send since there is enough buffering on my system that 200k can hide in the buffers triggering a test failure (the limit works - it just fails in a way the test doesn't expect) Modified: tomcat/trunk/test/org/apache/catalina/core/TestSwallowAbortedUploads.java Modified: tomcat/trunk/test/org/apache/catalina/core/TestSwallowAbortedUploads.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/core/TestSwallowAbortedUploads.java?rev=1140645&r1=1140644&r2=1140645&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/catalina/core/TestSwallowAbortedUploads.java (original) +++ tomcat/trunk/test/org/apache/catalina/core/TestSwallowAbortedUploads.java Tue Jun 28 14:37:59 2011 @@ -333,7 +333,7 @@ public class TestSwallowAbortedUploads e private static final String URI = "/uploadAborted"; private static final String servletName = "uploadAborted"; - private static final int hugeSize = 200000; + private static final int hugeSize = 400000; private boolean init; private Context context; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org