Return-Path: Delivered-To: apmail-db-ojb-dev-archive@www.apache.org Received: (qmail 97010 invoked from network); 4 Oct 2006 15:44:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Oct 2006 15:44:15 -0000 Received: (qmail 27942 invoked by uid 500); 4 Oct 2006 15:44:15 -0000 Delivered-To: apmail-db-ojb-dev-archive@db.apache.org Received: (qmail 27919 invoked by uid 500); 4 Oct 2006 15:44:15 -0000 Mailing-List: contact ojb-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "OJB Developers List" Reply-To: "OJB Developers List" Delivered-To: mailing list ojb-dev@db.apache.org Received: (qmail 27908 invoked by uid 500); 4 Oct 2006 15:44:15 -0000 Received: (qmail 27905 invoked by uid 99); 4 Oct 2006 15:44:15 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Oct 2006 08:44:15 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from [140.211.166.113] ([140.211.166.113:62783] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id E9/90-17684-EC6D3254 for ; Wed, 04 Oct 2006 08:44:14 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 417EC1A981A; Wed, 4 Oct 2006 08:44:11 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r452914 - /db/ojb/branches/OJB_1_0_RELEASE/src/test/org/apache/ojb/broker/AllTests.java Date: Wed, 04 Oct 2006 15:44:11 -0000 To: ojb-commits@db.apache.org From: arminw@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061004154411.417EC1A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: arminw Date: Wed Oct 4 08:44:10 2006 New Revision: 452914 URL: http://svn.apache.org/viewvc?view=rev&rev=452914 Log: execute PathTest before other tests to avoid side-effects (TODO: make PathTest independent) Modified: db/ojb/branches/OJB_1_0_RELEASE/src/test/org/apache/ojb/broker/AllTests.java Modified: db/ojb/branches/OJB_1_0_RELEASE/src/test/org/apache/ojb/broker/AllTests.java URL: http://svn.apache.org/viewvc/db/ojb/branches/OJB_1_0_RELEASE/src/test/org/apache/ojb/broker/AllTests.java?view=diff&rev=452914&r1=452913&r2=452914 ============================================================================== --- db/ojb/branches/OJB_1_0_RELEASE/src/test/org/apache/ojb/broker/AllTests.java (original) +++ db/ojb/branches/OJB_1_0_RELEASE/src/test/org/apache/ojb/broker/AllTests.java Wed Oct 4 08:44:10 2006 @@ -48,6 +48,7 @@ public static Test suite() { TestSuite suite = new TestSuite(); + suite.addTestSuite(PathTest.class); suite.addTestSuite(QueryTest.class); suite.addTestSuite(EmptyTableTest.class); suite.addTestSuite(PersistenceBrokerTest.class); @@ -106,7 +107,6 @@ suite.addTestSuite(CollectionTest2.class); suite.addTestSuite(NumberAccuracyTest.class); suite.addTestSuite(AutoIncrementTest.class); - suite.addTestSuite(PathTest.class); suite.addTestSuite(PrimaryKeyForeignKeyTest.class); suite.addTestSuite(PersistentFieldTest.class); suite.addTestSuite(InheritanceMultipleTableTest.class); --------------------------------------------------------------------- To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org For additional commands, e-mail: ojb-dev-help@db.apache.org