Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 10418 invoked from network); 2 Jun 2007 23:46:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Jun 2007 23:46:57 -0000 Received: (qmail 11997 invoked by uid 500); 2 Jun 2007 23:47:01 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 11963 invoked by uid 500); 2 Jun 2007 23:47:00 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 11952 invoked by uid 99); 2 Jun 2007 23:47:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Jun 2007 16:47:00 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Jun 2007 16:46:56 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 0E0261A981A; Sat, 2 Jun 2007 16:46:36 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r543809 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/_Suite.java Date: Sat, 02 Jun 2007 23:46:35 -0000 To: derby-commits@db.apache.org From: myrnavl@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070602234636.0E0261A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: myrnavl Date: Sat Jun 2 16:46:34 2007 New Revision: 543809 URL: http://svn.apache.org/viewvc?view=rev&rev=543809 Log: DERBY-2645 - remove semicolon at end of if statement to cause skipping of upgrade test from 10.0 with JSR169. Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/_Suite.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/_Suite.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/_Suite.java?view=diff&rev=543809&r1=543808&r2=543809 ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/_Suite.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/_Suite.java Sat Jun 2 16:46:34 2007 @@ -129,8 +129,8 @@ // JSR169 support was only added with 10.1, so don't // run 10.0 to later upgrade if that's what our jvm is supporting. if (!(JDBC.vmSupportsJSR169() && - (OLD_VERSIONS[i][0]==10) && (OLD_VERSIONS[i][1]==0))); - suite.addTest(UpgradeRun.suite(OLD_VERSIONS[i])); + (OLD_VERSIONS[i][0]==10) && (OLD_VERSIONS[i][1]==0))) + suite.addTest(UpgradeRun.suite(OLD_VERSIONS[i])); } return suite;