Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 54140 invoked from network); 2 Mar 2007 15:46:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Mar 2007 15:46:13 -0000 Received: (qmail 66638 invoked by uid 500); 2 Mar 2007 15:46:22 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 66537 invoked by uid 500); 2 Mar 2007 15:46:21 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 66498 invoked by uid 99); 2 Mar 2007 15:46:21 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Mar 2007 07:46:21 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Mar 2007 07:46:12 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2530D7142F8 for ; Fri, 2 Mar 2007 07:45:52 -0800 (PST) Message-ID: <8993173.1172850352150.JavaMail.jira@brutus> Date: Fri, 2 Mar 2007 07:45:52 -0800 (PST) From: "Alexey Petrenko (JIRA)" To: commits@harmony.apache.org Subject: [jira] Closed: (HARMONY-2491) [classlib][awt] java.awt.event.KeyEvent(...., int keyLocation) does not throw IAE while RI does In-Reply-To: <13598555.1165409421114.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-2491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexey Petrenko closed HARMONY-2491. ------------------------------------ > [classlib][awt] java.awt.event.KeyEvent(...., int keyLocation) does not throw IAE while RI does > ----------------------------------------------------------------------------------------------- > > Key: HARMONY-2491 > URL: https://issues.apache.org/jira/browse/HARMONY-2491 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Pavel Dolgov > Assigned To: Alexey Petrenko > Priority: Minor > Attachments: HARMONY-2491-KeyEvent.patch, HARMONY-2491-KeyEventTest.patch > > > Test case: > -------------- > import java.awt.Container; > import java.awt.event.KeyEvent; > import junit.framework.TestCase; > public class TheTest extends TestCase { > public static void main(String args[]) { > junit.textui.TestRunner.run(TheTest.class); > } > public void testcase1() { > int keyLoc = 5; // 0 - 4 range > try { > new KeyEvent(new Container(), (-1), 62554L, 5, 1, '\1', keyLoc); > fail("IllegalArgumentException expected"); > } catch (IllegalArgumentException e) { > } > } > } > RI output: > ------------- > . > Time: 0,191 > OK (1 test) > Harmony output: > ------------- > .F > Time: 0.501 > There was 1 failure: > 1) testcase1(TheTest)junit.framework.AssertionFailedError: IllegalArgumentException expected > at TheTest.testcase1(TheTest.java:16) > at java.lang.reflect.VMReflection.invokeMethod(Native Method) > at TheTest.main(TheTest.java:9) > FAILURES!!! > Tests run: 1, Failures: 1, Errors: 0 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.