Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 34635 invoked from network); 7 Jul 2007 10:44:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jul 2007 10:44:25 -0000 Received: (qmail 8820 invoked by uid 500); 7 Jul 2007 10:44:28 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 8794 invoked by uid 500); 7 Jul 2007 10:44:28 -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 8785 invoked by uid 99); 7 Jul 2007 10:44:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jul 2007 03:44:28 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Sat, 07 Jul 2007 03:44:24 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A755B7141F1 for ; Sat, 7 Jul 2007 03:44:04 -0700 (PDT) Message-ID: <20591830.1183805044659.JavaMail.jira@brutus> Date: Sat, 7 Jul 2007 03:44:04 -0700 (PDT) From: "Ivan Popov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-2889) [jdktools][jdwp] group identical Breakpoint, Step, MethodEntry, MethodExit events In-Reply-To: <23156506.1167214221195.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-2889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12510874 ] Ivan Popov commented on HARMONY-2889: ------------------------------------- The following affected JDWP stress tests passed with patched JDWP agent: org.apache.harmony.test.stress.jpda.jdwp.scenario.EVENT011.EventTest011 org.apache.harmony.test.stress.jpda.jdwp.scenario.EVENT012.EventTest012 org.apache.harmony.test.stress.jpda.jdwp.scenario.EVENT013.EventTest013 but the following tests still fail due to other issues: org.apache.harmony.test.stress.jpda.jdwp.scenario.EVENT014.EventTest014 org.apache.harmony.test.stress.jpda.jdwp.scenario.EVENT015.EventTest015 org.apache.harmony.test.stress.jpda.jdwp.scenario.EVENT016.EventTest016 I'll submit new issues separately. > [jdktools][jdwp] group identical Breakpoint, Step, MethodEntry, MethodExit events > --------------------------------------------------------------------------------- > > Key: HARMONY-2889 > URL: https://issues.apache.org/jira/browse/HARMONY-2889 > Project: Harmony > Issue Type: Improvement > Components: JDK > Reporter: Ivan Popov > Priority: Minor > Attachments: H2889_jdwp_agent.patch, H2889_jdwp_tests.patch > > > According to JDWP spec Breakpoint, Step, MethodEntry, MethodExit events for the same location can be grouped into one event set. Without this feature user have to resume thread twice when, for example, stepping over a line with breakpoint. > Current implementation of JDWP agent groups only identical events, it does not group different events into one event set. Implementing grouping for different JDWP events based on JVMTI callbacks requires rather sophisticated algorithm. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.