Return-Path: Delivered-To: apmail-db-jdo-dev-archive@www.apache.org Received: (qmail 22370 invoked from network); 7 Nov 2008 00:50:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Nov 2008 00:50:35 -0000 Received: (qmail 89391 invoked by uid 500); 7 Nov 2008 00:50:41 -0000 Mailing-List: contact jdo-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jdo-dev@db.apache.org Delivered-To: mailing list jdo-dev@db.apache.org Received: (qmail 89380 invoked by uid 99); 7 Nov 2008 00:50:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Nov 2008 16:50:41 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Nov 2008 00:49:32 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 59547234C280 for ; Thu, 6 Nov 2008 16:49:44 -0800 (PST) Message-ID: <596725256.1226018984364.JavaMail.jira@brutus> Date: Thu, 6 Nov 2008 16:49:44 -0800 (PST) From: "Ilan Kirsh (JIRA)" To: jdo-dev@db.apache.org Subject: [jira] Commented: (JDO-613) Missing addTearDownClass in PersistenceManagerTest In-Reply-To: <1450256127.1226012749945.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/JDO-613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12645643#action_12645643 ] Ilan Kirsh commented on JDO-613: -------------------------------- It seems that the following addition to org.apache.jdo.tck.api.persistencemanager.cache.Retrieve should solve the problem: /** * @see JDO_Test#localSetUp() */ protected void localSetUp() { addTearDownClass(PCPoint2.class); super.localSetUp(); } Also, a similar problem exists in org.apache.jdo.tck.api.persistencemanager.OptimisticFailure and should be solved by: /** * @see JDO_Test#localSetUp() */ protected void localSetUp() { addTearDownClass(VersionedPCPoint.class); super.localSetUp(); } > Missing addTearDownClass in PersistenceManagerTest > -------------------------------------------------- > > Key: JDO-613 > URL: https://issues.apache.org/jira/browse/JDO-613 > Project: JDO > Issue Type: Test > Components: tck2 > Affects Versions: JDO 2 maintenance release 2 > Reporter: Ilan Kirsh > Priority: Minor > > Missing: > addTearDownClass(PCPoint2.class); > in PersistenceManagerTest.localSetUp (or Retrieve?) > Some PCpoint2 instances (maybe generated by Retrieve) are not deleted. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.