Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 43475 invoked from network); 17 Mar 2006 17:07:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 17 Mar 2006 17:07:21 -0000 Received: (qmail 58278 invoked by uid 500); 17 Mar 2006 17:07:21 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 58045 invoked by uid 500); 17 Mar 2006 17:07:20 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 58036 invoked by uid 99); 17 Mar 2006 17:07:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Mar 2006 09:07:20 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=PLING_QUERY,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [192.18.98.43] (HELO brmea-mail-2.sun.com) (192.18.98.43) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Mar 2006 09:07:18 -0800 Received: from phys-epost-1 ([129.159.136.14]) by brmea-mail-2.sun.com (8.12.10/8.12.9) with ESMTP id k2HH6v8u009489 for ; Fri, 17 Mar 2006 10:06:57 -0700 (MST) Received: from conversion-daemon.epost-mail1.sweden.sun.com by epost-mail1.sweden.sun.com (iPlanet Messaging Server 5.2 HotFix 1.24 (built Dec 19 2003)) id <0IWA00F016MRJB@epost-mail1.sweden.sun.com> (original mail from Andreas.Korneliussen@Sun.COM) for derby-dev@db.apache.org; Fri, 17 Mar 2006 18:06:57 +0100 (MET) Received: from [129.159.112.247] (khepri35.Norway.Sun.COM [129.159.112.247]) by epost-mail1.sweden.sun.com (iPlanet Messaging Server 5.2 HotFix 1.24 (built Dec 19 2003)) with ESMTPA id <0IWA006DI7JKI6@epost-mail1.sweden.sun.com> for derby-dev@db.apache.org; Fri, 17 Mar 2006 18:06:57 +0100 (MET) Date: Fri, 17 Mar 2006 18:06:56 +0100 From: Andreas Korneliussen Subject: Re: regression ?! all tests in jdbcapi fails for me In-reply-to: <441AD2FC.6020901@Sun.COM> To: derby-dev@db.apache.org Reply-to: Andreas.Korneliussen@Sun.COM Message-id: <441AECB0.3080809@sun.com> Organization: Sun Microsystems MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT User-Agent: Thunderbird 1.5 (X11/20060113) References: <441ACA4D.6010006@sun.com> <441AD2FC.6020901@Sun.COM> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > > So I guess something must be off with your build or run environment. > I built Derby with "ant clobber && ant buildsource && ant testing && ant > buildjars". I use the &&'s beacuse I have had problems combining build > targets on the same ant command line before. > Thank you for the help figuring this out. I copied the jarfiles you had built, and reran the test. It failed the same way. The reason the test failed seems to be the way you order the jarfiles in the classpath. * Running the test with the derbyclient.jar before derby.jar in the classpath, caused the failures, imo. This classpath caused all tests in jdbcapi to fail for me: Java classpath: /home/ak136785/devel/issue/919/trunk//jars/sane/derbyclient.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derby.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derbytools.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derbynet.jar:/usr/local/share/java/db2jcc/lib/db2jcc.jar:/usr/local/share/java/db2jcc/lib/db2jcc_license_c.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derbyTesting.jar:/home/ak136785/devel/issue/919/trunk//tools/java/jakarta-oro-2.0.8.jar:/home/ak136785/devel/issue/919/trunk//tools/java/junit.jar With this classpath, I could run the tests with no errors: Java classpath: /home/ak136785/devel/issue/919/trunk//jars/sane/derby.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derbyclient.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derbytools.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derbynet.jar:/usr/local/share/java/db2jcc/lib/db2jcc.jar:/usr/local/share/java/db2jcc/lib/db2jcc_license_c.jar:/home/ak136785/devel/issue/919/trunk//jars/sane/derbyTesting.jar:/home/ak136785/devel/issue/919/trunk//tools/java/jakarta-oro-2.0.8.jar:/home/ak136785/devel/issue/919/trunk//tools/java/junit.jar I think this is a regression from previous behaviour. The last time I did svn up, I think was earlier this week, or last week, so I think this may have been introduced this week. Andreas