Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 95038 invoked from network); 25 Oct 2005 22:27:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Oct 2005 22:27:48 -0000 Received: (qmail 87144 invoked by uid 500); 25 Oct 2005 22:27:46 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 87101 invoked by uid 500); 25 Oct 2005 22:27:45 -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 87080 invoked by uid 99); 25 Oct 2005 22:27:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Oct 2005 15:27:45 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [32.97.110.150] (HELO e32.co.us.ibm.com) (32.97.110.150) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Oct 2005 15:27:42 -0700 Received: from d03relay04.boulder.ibm.com (d03relay04.boulder.ibm.com [9.17.195.106]) by e32.co.us.ibm.com (8.12.11/8.12.11) with ESMTP id j9PMRM4c018896 for ; Tue, 25 Oct 2005 18:27:22 -0400 Received: from d03av01.boulder.ibm.com (d03av01.boulder.ibm.com [9.17.195.167]) by d03relay04.boulder.ibm.com (8.12.10/NCO/VERS6.7) with ESMTP id j9PMSK53524400 for ; Tue, 25 Oct 2005 16:28:20 -0600 Received: from d03av01.boulder.ibm.com (loopback [127.0.0.1]) by d03av01.boulder.ibm.com (8.12.11/8.13.3) with ESMTP id j9PMRLeF014650 for ; Tue, 25 Oct 2005 16:27:21 -0600 Received: from [127.0.0.1] (sig-9-48-125-25.mts.ibm.com [9.48.125.25]) by d03av01.boulder.ibm.com (8.12.11/8.12.11) with ESMTP id j9PMRKmZ014590 for ; Tue, 25 Oct 2005 16:27:21 -0600 Message-ID: <435EB147.6050002@debrunners.com> Date: Tue, 25 Oct 2005 15:27:19 -0700 From: Daniel John Debrunner User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: derby-dev@db.apache.org Subject: Re: Regression test errors: 'AccessControlException' and 'NoClassDefFoundError': 'SanityManager' References: <435821C9.9030003@Sun.COM> <435DA736.8060303@debrunners.com> <435DDFE9.2080708@Sun.COM> In-Reply-To: <435DDFE9.2080708@Sun.COM> X-Enigmail-Version: 0.90.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Ole Solberg wrote: > I have copied .zip files of those directories for three of the platforms > to http://www.multinet.no/~solberg/public/Apache/Derby/Debugging/ Thanks Ole, that enabled me to see what was going on and actually it's a bug in the test harness. The tests at Sun are run in a directory like: Java user dir: c:\export\home\tmp\os136789\testingDerby\CYGWIN_NT-5.2_i686-unknown\derbyall The test harness for multi tests is creating a log file based off that path, but is getting confused by the '.', assuming that is the lead in to a suffix. Thus it comes up with a log file of: C:\export\home\tmp\os136789\testingDerby\CYGWIN_NT-5.log which is outside the user.dir (current directory) and so of course, correctly, permission has not been granted to create that file. It all passed for me because I was not running with a '.' in the path of my current directory. Dan.