Return-Path: Delivered-To: apmail-db-ojb-dev-archive@www.apache.org Received: (qmail 77746 invoked from network); 22 Oct 2004 12:41:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 22 Oct 2004 12:41:00 -0000 Received: (qmail 38179 invoked by uid 500); 22 Oct 2004 12:40:58 -0000 Delivered-To: apmail-db-ojb-dev-archive@db.apache.org Received: (qmail 38123 invoked by uid 500); 22 Oct 2004 12:40:57 -0000 Mailing-List: contact ojb-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: 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 38107 invoked by uid 500); 22 Oct 2004 12:40:57 -0000 Received: (qmail 38102 invoked by uid 99); 22 Oct 2004 12:40:57 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 22 Oct 2004 05:40:57 -0700 Received: (qmail 77712 invoked by uid 1510); 22 Oct 2004 12:40:56 -0000 Date: 22 Oct 2004 12:40:56 -0000 Message-ID: <20041022124056.77711.qmail@minotaur.apache.org> From: arminw@apache.org To: db-ojb-cvs@apache.org Subject: cvs commit: db-ojb/src/test/org/apache/ojb/junit OJBTestCase.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N arminw 2004/10/22 05:40:56 Modified: src/test/org/apache/ojb/broker Tag: OJB_1_0_RELEASE InheritanceMultipleTableTest.java src/test/org/apache/ojb/junit Tag: OJB_1_0_RELEASE OJBTestCase.java Log: skip known issue Revision Changes Path No revision No revision 1.7.2.3 +7 -1 db-ojb/src/test/org/apache/ojb/broker/InheritanceMultipleTableTest.java Index: InheritanceMultipleTableTest.java =================================================================== RCS file: /home/cvs/db-ojb/src/test/org/apache/ojb/broker/InheritanceMultipleTableTest.java,v retrieving revision 1.7.2.2 retrieving revision 1.7.2.3 diff -u -r1.7.2.2 -r1.7.2.3 --- InheritanceMultipleTableTest.java 13 Oct 2004 16:48:27 -0000 1.7.2.2 +++ InheritanceMultipleTableTest.java 22 Oct 2004 12:40:55 -0000 1.7.2.3 @@ -33,6 +33,12 @@ public void testInheritancedObjectsInCollectionReferences() { + if(ojbSkipKnownIssueProblem("References of classes (1:1, 1:n) mapped to multiple joined tables only" + + " return base class type instances")) + { + return; + } + long timestamp = System.currentTimeMillis(); Long id_2 = new Long(timestamp); String name = "testInheritancedObjectsInCollectionReferences_" + timestamp; No revision No revision 1.5.2.1 +3 -3 db-ojb/src/test/org/apache/ojb/junit/OJBTestCase.java Index: OJBTestCase.java =================================================================== RCS file: /home/cvs/db-ojb/src/test/org/apache/ojb/junit/OJBTestCase.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -r1.5 -r1.5.2.1 --- OJBTestCase.java 24 Jun 2004 13:43:41 -0000 1.5 +++ OJBTestCase.java 22 Oct 2004 12:40:56 -0000 1.5.2.1 @@ -59,7 +59,7 @@ */ public boolean ojbSkipKnownIssueProblem() { - return skipKnownIssueProblem(null); + return ojbSkipKnownIssueProblem(null); } /** @@ -67,7 +67,7 @@ * a release was made. To enable the skipped tests set a system property 'skip.issues' * to false. */ - public boolean skipKnownIssueProblem(String message) + public boolean ojbSkipKnownIssueProblem(String message) { String result = SKIP_DEFAULT_VALUE; boolean skip = false; --------------------------------------------------------------------- To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org For additional commands, e-mail: ojb-dev-help@db.apache.org