This is the mail archive of the mauve-discuss@sources.redhat.com mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] BinaryCompatibilty tests fail due to bogus CLASSPATHwith kaffe


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
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  <noa@resare.com>
+
+	* gnu/testlet/BinaryCompatibility/foo:
+	added explicit classpath to $JAVA invocation in test script
+
 2004-10-21  Dalibor Topic  <robilad@kaffe.org>
 
 	* 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]