Return-Path: Delivered-To: apmail-jakarta-watchdog-dev-archive@apache.org Received: (qmail 36446 invoked from network); 28 Jan 2002 23:47:44 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 28 Jan 2002 23:47:44 -0000 Received: (qmail 16016 invoked by uid 97); 28 Jan 2002 23:47:49 -0000 Delivered-To: qmlist-jakarta-archive-watchdog-dev@jakarta.apache.org Received: (qmail 15999 invoked by uid 97); 28 Jan 2002 23:47:49 -0000 Mailing-List: contact watchdog-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Watchdog Developers List" Reply-To: "Watchdog Developers List" Delivered-To: mailing list watchdog-dev@jakarta.apache.org Received: (qmail 15988 invoked by uid 97); 28 Jan 2002 23:47:48 -0000 Date: 28 Jan 2002 23:47:41 -0000 Message-ID: <20020128234741.23813.qmail@icarus.apache.org> From: rlubke@apache.org To: jakarta-watchdog-4.0-cvs@apache.org Subject: cvs commit: jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/buffer negativeBufferOverflowException.jsp negativeDuplicateBufferFatalTranslationError.jsp X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N rlubke 02/01/28 15:47:41 Added: src/server/jsp-tests/jsp/core_syntax/directives/page/buffer negativeBufferOverflowException.jsp negativeDuplicateBufferFatalTranslationError.jsp Log: - new negative tests for page buffer functionality Revision Changes Path 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/buffer/negativeBufferOverflowException.jsp Index: negativeBufferOverflowException.jsp =================================================================== negativeBufferOverflowException <% /** Name: negativeBufferOverflowException Description: Set autoflush to false. Write more date out than the 8KB buffer can handle. Result: An exception should be thrown. **/ %> <%@ page autoFlush="false" %> <% try { for (int d = 0; d < 60000; d++ ) { out.print(d+" "); } } catch ( Throwable t ) { out.clear(); out.println( "Buffer overflow occurred. Exception successfully caught." ); out.println( "Test status: PASS" ); } %> 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/buffer/negativeDuplicateBufferFatalTranslationError.jsp Index: negativeDuplicateBufferFatalTranslationError.jsp =================================================================== negativeDuplicateBufferFatalTranslationError <% /** Name: negativeDuplicateBufferFatalTranslationError Description: Verify that multiple uses of buffer attribute result in a fatal translation error. Result: A fatal translation error **/ %> <%@ page buffer="12kb" buffer="8kb" %> -- To unsubscribe, e-mail: For additional commands, e-mail: