Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 67056 invoked from network); 24 Sep 2007 20:12:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Sep 2007 20:12:37 -0000 Received: (qmail 96942 invoked by uid 500); 24 Sep 2007 20:12:28 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 96917 invoked by uid 500); 24 Sep 2007 20:12:27 -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 96906 invoked by uid 99); 24 Sep 2007 20:12:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Sep 2007 13:12:27 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Mon, 24 Sep 2007 20:14:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8D5E11A9832; Mon, 24 Sep 2007 13:12:14 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r578942 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/DataSourceTest.java Date: Mon, 24 Sep 2007 20:12:13 -0000 To: derby-commits@db.apache.org From: myrnavl@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070924201214.8D5E11A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: myrnavl Date: Mon Sep 24 13:12:11 2007 New Revision: 578942 URL: http://svn.apache.org/viewvc?rev=578942&view=rev Log: DERBY-3082 - modify verification pattern in DataSourceTest to accept negative values for the hashcode string; this is what gets generated on iseries. Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/DataSourceTest.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/DataSourceTest.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/DataSourceTest.java?rev=578942&r1=578941&r2=578942&view=diff ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/DataSourceTest.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/DataSourceTest.java Mon Sep 24 13:12:11 2007 @@ -91,7 +91,7 @@ * (DATABASE=), (DRDAID = )" */ private static final String CONNSTRING_FORMAT = - "\\S+@[0-9]+.* \\(XID = .*\\), \\(SESSIONID = [0-9]+\\), " + + "\\S+@\\-?[0-9]+.* \\(XID = .*\\), \\(SESSIONID = [0-9]+\\), " + "\\(DATABASE = [A-Za-z]+\\), \\(DRDAID = .*\\) ";