Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 5640 invoked from network); 9 Jan 2007 12:46:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Jan 2007 12:46:51 -0000 Received: (qmail 35434 invoked by uid 500); 9 Jan 2007 12:46:57 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 35419 invoked by uid 500); 9 Jan 2007 12:46:57 -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 35410 invoked by uid 99); 9 Jan 2007 12:46:57 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jan 2007 04:46:57 -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; Tue, 09 Jan 2007 04:46:47 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9848C7141A3 for ; Tue, 9 Jan 2007 04:46:27 -0800 (PST) Message-ID: <22648405.1168346787590.JavaMail.jira@brutus> Date: Tue, 9 Jan 2007 04:46:27 -0800 (PST) From: "Gregory Shimansky (JIRA)" To: commits@harmony.apache.org Subject: [jira] Closed: (HARMONY-1739) [drlvm] Invocation of JFrame.setVisible(true) into harmony unit tests leads to VM crash on Linux 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-1739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gregory Shimansky closed HARMONY-1739. -------------------------------------- Resolution: Cannot Reproduce Assignee: Gregory Shimansky Closed by request. > [drlvm] Invocation of JFrame.setVisible(true) into harmony unit tests leads to VM crash on Linux > -------------------------------------------------------------------------------------------------- > > Key: HARMONY-1739 > URL: https://issues.apache.org/jira/browse/HARMONY-1739 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Environment: Linux > Reporter: Maxim Makarov > Assigned To: Gregory Shimansky > > Problem: > Invocation of JFrame.setVisible(true) method in harmony unit tests leads to VM crash on Linux, but it happens unstable and occurs when test is in JUnit format. > If VM if run with JET then test fails sometimes with error > .Uncaught exception in AWT-NativeEventThread: > java.lang.NullPointerException > at org.apache.harmony.awt.wtk.linux.LinuxEvent.processConfigureEvent(LinuxEvent.java:358) > at org.apache.harmony.awt.wtk.linux.LinuxEvent.setEvent(LinuxEvent.java:141) > at org.apache.harmony.awt.wtk.linux.LinuxEvent.(LinuxEvent.java:78) > at org.ap > ache.harmony.awt.wtk.linux.LinuxEventQueue.enqueue(LinuxEventQueue.java:94) > at org.apache.harmony.awt.wtk.linux.LinuxEventQueue.dispatchEvent(LinuxEventQueue.java:87) > at org.apache.harmony.awt.wtk.NativeEventThread.runModalLoop(NativeEventThread.java:57) > at org.apache.harmony.awt.wtk.NativeEventThread.run(NativeEventThread.java:51) > at java.lang.Thread.runImpl(Unknown Source) > Code for reproducing (Try to run this test several times): > import javax.swing.*; > public class Test extends junit.framework.TestCase { > private JFrame frame; > protected void tearDown() throws Exception { > super.tearDown(); > frame.dispose(); > } > public void testTest() { > frame = new JFrame(); > frame.setVisible(true); > } > } > Running script: > #!/bin/bash > # set path to Harmony > HARMONY=" ... " > for i in 1 2 3 4 5; do > $HARMONY/bin/java -showversion -cp "junit.jar:." junit.textui.TestRunner Test > done > Output on RI: > ---------------- > java version "1.5.0_06" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05) > Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode) > . > Time: 0.263 > OK (1 tests) > Output on Harmony: > ------------------------ > $run.sh > Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. > java version "1.5.0" > pre-alpha : not complete or compatible > svn = r452710, (Oct 4 2006), Linux/ia32/gcc 3.3.4, release build > http://incubator.apache.org/harmony > .. > SIGSEGV in VM code. > Stack trace: > Time: 0.741 > OK (1 tests) > Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. > java version "1.5.0" > pre-alpha : not complete or compatible > svn = r452710, (Oct 4 2006), Linux/ia32/gcc 3.3.4, release build > http://incubator.apache.org/harmony > .. > Time: 0.746 > OK (1 tests) > Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. > java version "1.5.0" > pre-alpha : not complete or compatible > svn = r452710, (Oct 4 2006), Linux/ia32/gcc 3.3.4, release build > http://incubator.apache.org/harmony > .. > free(): invalid pointer 0x887fb60! > Time: 0.746 > OK (1 tests) > ... -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira