From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9279 invoked by alias); 25 Nov 2006 15:29:08 -0000 Received: (qmail 9269 invoked by uid 22791); 25 Nov 2006 15:29:07 -0000 X-Spam-Check-By: sourceware.org Received: from 82-71-88-73.dsl.in-addr.zen.co.uk (HELO localhost.localdomain) (82.71.88.73) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sat, 25 Nov 2006 15:29:00 +0000 Received: from 82-71-88-73.dsl.in-addr.zen.co.uk ([82.71.88.73]) by localhost.localdomain with esmtp (Exim 4.62) (envelope-from ) id 1GnzSa-0007b9-7u for mauve-patches@sources.redhat.com; Sat, 25 Nov 2006 15:28:56 +0000 Subject: Re: mauve build fix for VisualTestlet From: Paul Jenner To: mauve-patches@sources.redhat.com In-Reply-To: <1162237726.8716.2.camel@localhost.localdomain> References: <1162237726.8716.2.camel@localhost.localdomain> Content-Type: multipart/mixed; boundary="=-iXCA6Pt1W279gHRv4gCh" Date: Sat, 25 Nov 2006 15:29:00 -0000 Message-Id: <1164468535.29098.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 (2.6.3-1.fc5.5) X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2006/txt/msg00747.txt.bz2 --=-iXCA6Pt1W279gHRv4gCh Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 1325 Hi list. Was it just me that needed this patch to build mauve from clean checkout? The build machinery looks broken to me without this patch but I may be missing something. Thanks, Paul On Mon, 2006-10-30 at 19:48 +0000, Paul Jenner wrote: > Hi. > > "make" step was failing for me with clean checkout of mauve without the > attached patch. > > Could someone please review and apply? > > For reference, ecj gave error: > > home/psj/software/install/bin/ecj > -bootclasspath /home/psj/software/install/classpath-cvs/share/classpath/glibj.zip Harness.java RunnerProcess.java gnu/testlet/config.java gnu/testlet/TestHarness.java gnu/testlet/Testlet.java gnu/testlet/TestSecurityManager.java gnu/testlet/ResourceNotFoundException.java gnu/testlet/TestReport.java gnu/testlet/TestResult.java > ---------- > 1. ERROR in RunnerProcess.java > (at line 32) > import gnu.testlet.VisualTestlet; > ^^^^^^^^^^^^^^^^^^^^^^^^^ > The import gnu.testlet.VisualTestlet cannot be resolved > ---------- > 2. ERROR in RunnerProcess.java > (at line 279) > if (o instanceof VisualTestlet) > ^^^^^^^^^^^^^ > VisualTestlet cannot be resolved to a type > ---------- > 2 problems (2 errors)make: *** [harness] Error 255 > > Thanks, > > Paul > -- Paul Jenner --=-iXCA6Pt1W279gHRv4gCh Content-Disposition: attachment; filename=mauve-VisualTestletbuildfix.patch Content-Type: text/x-patch; name=mauve-VisualTestletbuildfix.patch; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 7bit Content-length: 748 Common subdirectories: mauve/CVS and mauve.psj/CVS Common subdirectories: mauve/.externalToolBuilders and mauve.psj/.externalToolBuilders Common subdirectories: mauve/gnu and mauve.psj/gnu Common subdirectories: mauve/junit and mauve.psj/junit diff -u mauve/Makefile.am mauve.psj/Makefile.am --- mauve/Makefile.am 2006-06-28 06:00:31.000000000 +0100 +++ mauve.psj/Makefile.am 2006-10-30 19:42:32.000000000 +0000 @@ -18,7 +18,8 @@ gnu/testlet/TestSecurityManager.java \ gnu/testlet/ResourceNotFoundException.java \ gnu/testlet/TestReport.java \ - gnu/testlet/TestResult.java + gnu/testlet/TestResult.java \ + gnu/testlet/VisualTestlet.java harness: $(JAVAC) $(harness_files) Common subdirectories: mauve/.settings and mauve.psj/.settings --=-iXCA6Pt1W279gHRv4gCh--