From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14867 invoked by alias); 10 Aug 2006 15:52:24 -0000 Received: (qmail 14859 invoked by uid 22791); 10 Aug 2006 15:52:23 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 10 Aug 2006 15:52:21 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7AFqIPh015323; Thu, 10 Aug 2006 11:52:18 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7AFqHxJ032559; Thu, 10 Aug 2006 11:52:17 -0400 Received: from tony.toronto.redhat.com (tony.toronto.redhat.com [172.16.14.158]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id k7AFqH0F031558; Thu, 10 Aug 2006 11:52:17 -0400 Subject: Re: Problem with auto compilation and gnu.testlet.java.security.Engine.getInstance From: Anthony Balkissoon To: Edwin Steiner Cc: mauve-discuss@sourceware.org In-Reply-To: <20060810122151.GA22953@localhost.localdomain> References: <20060810122151.GA22953@localhost.localdomain> Content-Type: text/plain Date: Thu, 10 Aug 2006 15:52:00 -0000 Message-Id: <1155225137.14423.81.camel@tony.toronto.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 (2.6.0-1) Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact mauve-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-discuss-owner@sourceware.org X-SW-Source: 2006-q3/txt/msg00022.txt.bz2 On Thu, 2006-08-10 at 14:21 +0200, Edwin Steiner wrote: > Hi! > > When testing cacao with mauve we had a FAIL that only occurred on the > first test run in a clean mauve checkout. > > The reason is that when running the testlet > > gnu.testlet.java.security.Engine.getInstance > > mauve auto compilation misses the required class > > gnu.testlet.java.security.MessageDigest.MauveDigest > > This class is later compiled when the MessageDigest testlet is run, > so the FAIL is not reproducible later. > > Any idea what to do about this? > > Cheers, > -Edwin > So the test compiles and runs, but fails because it requires MauveDigest and can't find it? I've tried running the test after a clean checkout, and it works, but there are some failures. So I'm guessing it falls back to some default behaviour when it can't find MauveDigest? I see that the test file has the "// Uses:" note, I guess we have to make Mauve search for that and autocompile the needed files. Tony