Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 706 invoked from network); 30 Mar 2010 14:09:38 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 30 Mar 2010 14:09:38 -0000 Received: (qmail 56250 invoked by uid 500); 30 Mar 2010 14:09:37 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 56197 invoked by uid 500); 30 Mar 2010 14:09:37 -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 56187 invoked by uid 99); 30 Mar 2010 14:09:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Mar 2010 14:09:37 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of bpendleton.derby@gmail.com designates 209.85.220.226 as permitted sender) Received: from [209.85.220.226] (HELO mail-fx0-f226.google.com) (209.85.220.226) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Mar 2010 14:09:28 +0000 Received: by fxm26 with SMTP id 26so3619073fxm.15 for ; Tue, 30 Mar 2010 07:09:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=6CXbCz293zIqapSkAPgbn6XkDZL324JY9vs294RSFCM=; b=jfRifiLQnF/5tK94INm2gjGyOcpQ+J1/uGBjsRXMfL+328bccQvPO3yxUpdHHc9Lhj OXWlZlI79uNGpYuGRsEwpFv9rLmMAlOBMEvs9PlpVMiNHTw5NBvMnNI30hv03yykZUkd KmvpwHbG72FQ5EGFNRjzs/Xxpja6o7AZ797aE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=cxi+WFkuWlbq5XqjWcD6jwpNPVjPyf87xbuQwaMt4HI2/QrXDK2OEEgSKFvzvg80J8 LKyaLwAC6ehnzeUUNjvxD1Rkl0sssMV3fn7KBL2hJdNZ/C5KgDJITmDWLpIRREzKc/tn Zm1aAW4tgiCKHQg1G9PE5klQAj0pwVINZIK78= Received: by 10.87.40.12 with SMTP id s12mr5679815fgj.38.1269958148349; Tue, 30 Mar 2010 07:09:08 -0700 (PDT) Received: from [192.168.0.103] (c-67-170-231-73.hsd1.ca.comcast.net [67.170.231.73]) by mx.google.com with ESMTPS id 14sm3950585fxm.1.2010.03.30.07.09.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 30 Mar 2010 07:09:06 -0700 (PDT) Message-ID: <4BB205FF.2090500@gmail.com> Date: Tue, 30 Mar 2010 07:09:03 -0700 From: Bryan Pendleton User-Agent: Thunderbird 2.0.0.24 (X11/20100317) MIME-Version: 1.0 To: derby-dev@db.apache.org Subject: Re: Suites.All References: <59f746b91003300318r36f764ach322e81c95054adb8@mail.gmail.com> In-Reply-To: <59f746b91003300318r36f764ach322e81c95054adb8@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org I'm not sure what's going on, but at least your failure is reproducible! I suspect that the sysinfo tests are picking up some configuration setting from your environment, accidentally. The output from sysinfo is expected to have 14 lines, but actually has 15 lines. Try adding the following bit of code just before line 322 of SysinfoTest.java, and run the suite in such a manner as to be able to capture this output (that is, re-direct the output to a file. Just before: assertEquals(OUTPUT.length, lineCount); Add: if ( OUTPUT.length != lineCount ) { System.out.println("Expected " + OUTPUT.length + " lines, but actually have " + lineCount); System.out.println("EXPECTED:"); for (int i = 0; i < OUTPUT.length; i++) System.out.println(OUTPUT[i]); System.out.println("ACTUAL:"); for (int i = 0; i < actualOutputArray.length; i++) System.out.println(actualOutputArray[i]); } Hopefully then it will be more clear what the actual problem is. thanks, bryan