From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30284 invoked by alias); 22 Oct 2004 19:27:37 -0000 Mailing-List: contact mauve-discuss-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-discuss-owner@sources.redhat.com Received: (qmail 30271 invoked from network); 22 Oct 2004 19:27:36 -0000 Received: from unknown (HELO johanna.resare.com) (193.14.119.138) by sourceware.org with SMTP; 22 Oct 2004 19:27:36 -0000 Received: from molly.resare.com (c-771f72d5.01-60-6c6b701.cust.bredbandsbolaget.se [213.114.31.119]) by johanna.resare.com (Postfix) with ESMTP id 592F8D6BD0 for ; Fri, 22 Oct 2004 21:27:01 +0200 (CEST) Received: from 192.168.110.42 (marit [192.168.110.42]) by molly.resare.com (Postfix) with ESMTP id 4490CD2DF1 for ; Fri, 22 Oct 2004 21:27:36 +0200 (CEST) Subject: Re: [PATCH] BinaryCompatibilty tests fail due to bogus CLASSPATH with kaffe From: Noa Resare To: Mauve News Group In-Reply-To: <1098473061.28956.6.camel@c-061f72d5.01-60-6c6b701.cust.bredbandsbolaget.se> References: <1098473061.28956.6.camel@c-061f72d5.01-60-6c6b701.cust.bredbandsbolaget.se> Content-Type: multipart/mixed; boundary="=-Cq2+o3gr8FJzriJ+by4I" Date: Fri, 22 Oct 2004 19:27:00 -0000 Message-Id: <1098473255.28956.7.camel@c-061f72d5.01-60-6c6b701.cust.bredbandsbolaget.se> Mime-Version: 1.0 X-SW-Source: 2004-q4/txt/msg00019.txt.bz2 --=-Cq2+o3gr8FJzriJ+by4I Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 230 fre 2004-10-22 klockan 21:24 +0200 skrev Noa Resare: > The attached patch adds an explicit -classpath . to the $JAVA args and > makes cvs kaffe pass all the BinaryCompatibility tests. Please apply. forgot to attach. sorry. /noa --=-Cq2+o3gr8FJzriJ+by4I Content-Disposition: attachment; filename=mauve-binary-compat.patch Content-Type: text/x-patch; name=mauve-binary-compat.patch; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 1229 Index: ChangeLog =================================================================== RCS file: /cvs/mauve/mauve/ChangeLog,v retrieving revision 1.708 diff -u -r1.708 ChangeLog --- ChangeLog 21 Oct 2004 22:05:25 -0000 1.708 +++ ChangeLog 22 Oct 2004 19:23:22 -0000 @@ -1,3 +1,8 @@ +2004-10-22 Noa Resare + + * gnu/testlet/BinaryCompatibility/foo: + added explicit classpath to $JAVA invocation in test script + 2004-10-21 Dalibor Topic * gnu/testlet/java/util/zip/InflaterInputStream/basic.java, Index: gnu/testlet/BinaryCompatibility/foo =================================================================== RCS file: /cvs/mauve/mauve/gnu/testlet/BinaryCompatibility/foo,v retrieving revision 1.1 diff -u -r1.1 foo --- gnu/testlet/BinaryCompatibility/foo 19 Aug 2003 14:48:24 -0000 1.1 +++ gnu/testlet/BinaryCompatibility/foo 22 Oct 2004 19:23:22 -0000 @@ -18,8 +18,8 @@ done objs=`echo $1*.java | sed 's/\.java/.o/g'` if test "x$JAVA" != "x" ; then - $JAVA $1 > $1.out1 || echo FAIL "$1: " - echo $JAVA $1 + $JAVA -classpath . $1 > $1.out1 || echo FAIL "$1: " + echo $JAVA -classpath . $1 else if test "$verbose" = "true" ; then echo $GCJ $objs -o $1 --main=$1 --=-Cq2+o3gr8FJzriJ+by4I--