[kaffe] dawin 6 status

2005-07-20 Thread Riccardo
Hello,

in intrp+pthread 4 of 147 tests failed: DosTimeVerify.fail
PropertiesTest.fail InternHog.failTestMessageFormat.fail

they are all NPEs.

-R


___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] Apache Gump Kaffe Run

2005-07-20 Thread Adam R. B. Jack
On a Solaris Zone [1] we (Gump folks) once again have a Kaffe run [2].

Please review the "TODOs" list [3] for build problems, some of which could
be Kaffe related. The easiest way to determine if it is (I suspect) is to
compare it to the public (Sun JVM 1.4/Linux) TODOs list [4]. As things stand
the run initiates a 3/9/15 and 21 hundred hours GMT (although given the next
information, maybe that is more builds than maybe valuable.)

A simple script (outside of Gump) runs nightly at midnight GMT to checkout
the latest Kaffe from CVS HEAD, builds it, tests it, and installs it (tested
ok or not) for Gump to use. The log of this is [5]. Perhaps I ought consider
building this more often, to coincide with the runs, although I might need
to scale back the resources used sometime anyway. Ideas welcomed.

Good luck w/ your ventures, and I hope this helps a little.

regards,

Adam

[1] http://gump.zones.apache.org/
[2] http://gump.zones.apache.org/gump/kaffe/
[3] http://gump.zones.apache.org/gump/kaffe/project_todos.html
[4] http://vmgump.apache.org/gump/public/project_todos.html
[5] http://gump.zones.apache.org/kaffe/kaffe.txt


___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] CVS kaffe (robilad): Fix for ant bootstrap in gump

2005-07-20 Thread Kaffe CVS
PatchSet 6753 
Date: 2005/07/20 21:36:11
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Fix for ant bootstrap in gump

2005-07-20  Dalibor Topic  <[EMAIL PROTECTED]>

Fix for gump issue bootstrap-ant.

* libraries/javalib/java/util/zip/ZipEntry.java (clone):
New method. Taken from GNU Classpath.

Members: 
ChangeLog:1.4278->1.4279 
libraries/javalib/java/util/zip/ZipEntry.java:1.13->1.14 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4278 kaffe/ChangeLog:1.4279
--- kaffe/ChangeLog:1.4278  Wed Jul 20 02:23:48 2005
+++ kaffe/ChangeLog Wed Jul 20 21:36:11 2005
@@ -1,3 +1,10 @@
+2005-07-20  Dalibor Topic  <[EMAIL PROTECTED]>
+
+   Fix for gump issue bootstrap-ant.
+
+   * libraries/javalib/java/util/zip/ZipEntry.java (clone):
+   New method. Taken from GNU Classpath.
+
 2005-07-20  Wolfgang Baer <[EMAIL PROTECTED]>
 
* po/de.po: Translation for German.
Index: kaffe/libraries/javalib/java/util/zip/ZipEntry.java
diff -u kaffe/libraries/javalib/java/util/zip/ZipEntry.java:1.13 
kaffe/libraries/javalib/java/util/zip/ZipEntry.java:1.14
--- kaffe/libraries/javalib/java/util/zip/ZipEntry.java:1.13Mon Mar 22 
11:25:13 2004
+++ kaffe/libraries/javalib/java/util/zip/ZipEntry.java Wed Jul 20 21:36:13 2005
@@ -16,6 +16,31 @@
 
 public class ZipEntry implements Cloneable, ZipConstants {
 
+/* Clone method taken from GNU Classpath:
+ * Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
+ */
+  /**
+   * Creates a copy of this zip entry.
+   */
+  /**
+   * Clones the entry.
+   */
+  public Object clone()
+  {
+try
+  {
+   // The JCL says that the `extra' field is also copied.
+   ZipEntry clone = (ZipEntry) super.clone();
+   if (extra != null)
+ clone.extra = (byte[]) extra.clone();
+   return clone;
+  }
+catch (CloneNotSupportedException ex)
+  {
+   throw new InternalError();
+  }
+  }
+
   public static final int STORED = Deflater.NO_COMPRESSION;
   public static final int DEFLATED = Deflater.DEFLATED;
 

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] Apache Gump Kaffe Run

2005-07-20 Thread Dalibor Topic

Adam R. B. Jack wrote:

On a Solaris Zone [1] we (Gump folks) once again have a Kaffe run [2].


Hi Adam,

thank you very, very much for setting this up again. The gump 
collaboration has been one of the initial sparks that brought people on 
ASF and FSF side together, so it's great to see the gump up again, and 
helping us improve GNU Classpath, Kaffe and all that, and smash the 
ocassional Java trap along the way. ;)


For the casual Kaffe list readers that are not familar with Gump, it's a 
 very nice continuos integration project for just about anything in the 
open source & Free Software Java space (and beyound, these days). There 
is a nice set of slides on the Apache Gump project fresh from the 
ApacheCon Europe taking place in Stuttgart from Leo Simmons available at 
http://people.apache.org/~leosimons/presentations/apacheconeu2005/20050523-3-Introducing-Apache-Gump-Slides.pdf 


[1]


Please review the "TODOs" list [3] for build problems, some of which could
be Kaffe related. 


bootstrap ant is fixed now, thanks to Apache Gump and GNU Classpath. 
It't nice how gump helps even with merging. ;)


cheers,
dalibor topic


___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] SecureRandomTest failed

2005-07-20 Thread Ito Kazumitsu
Hi,

Today's regression test failure:

[EMAIL PROTECTED] cat test/regression/SecureRandomTest.fail
java.lang.Error: The "secure" random isn't! : lpc=  0 lpc2 = 20 data = 
8bc7ec02ec7c04f87a13ec6120616ead831baeaf
   at java.lang.VMThrowable.fillInStackTrace (VMThrowable.java:native)
   at java.lang.VMThrowable.fillInStackTrace (VMThrowable.java:79)
   at java.lang.Throwable.fillInStackTrace (Throwable.java:498)
   at java.lang.Throwable. (Throwable.java:159)
   at java.lang.Error. (Error.java:81)
   at SecureRandomTest.checkHistory (SecureRandomTest.java:51)
   at SecureRandomTest.main (SecureRandomTest.java:85)
[EMAIL PROTECTED] /disk/kaz/work/kaffe-inst/bin/kaffe -fullversion
kaffe VM "1.1.x-cvs"

Copyright (c) 1996-2005 Kaffe.org project contributors (please see
  the source code for a full list of contributors).  All rights reserved.
Portions Copyright (c) 1996-2002 Transvirtual Technologies, Inc.

The Kaffe virtual machine is free software, licensed under the terms of
the GNU General Public License.  Kaffe.org is a an independent, free software
community project, not directly affiliated with Transvirtual Technologies,
Inc.  Kaffe is a Trademark of Transvirtual Technologies, Inc.  Kaffe comes
with ABSOLUTELY NO WARRANTY.

Engine: Just-in-time v3   Version: 1.1.x-cvs   Java Version: 1.4
Heap defaults: minimum size: 5 MB, maximum size: unlimited
Stack default size: 256 KB
Configuration/Compilation options:
)  Compile date : Thu Jul 21 00:08:47 JST 2005
  Compile host : ph.maczuka.gcd.org
  Install prefix   : /disk/kaz/work/kaffe-inst
  Thread system: unix-pthreads
  Garbage Collector: kaffe-gc
  CC   : gcc
  CFLAGS   : -g -O2 -Wall -D_THREAD_SAFE -pthread 
  LDFLAGS  : 
  ChangeLog head   : 2005-07-20  Wolfgang Baer <[EMAIL PROTECTED]>
[EMAIL PROTECTED] uname -a
FreeBSD ph.maczuka.gcd.org 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May  8 
10:21:06 UTC 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] SecureRandomTest failed

2005-07-20 Thread Ito Kazumitsu

> Today's regression test failure:
> 
> [EMAIL PROTECTED] cat test/regression/SecureRandomTest.fail
> java.lang.Error: The "secure" random isn't! : lpc=  0 lpc2 = 20 data = 
> 8bc7ec02ec7c04f87a13ec6120616ead831baeaf

I am afraid something has changed so that Security.getProviders() returns

gnu.java.security.provider.Gnu: name=GNU version=1.0

  before

kaffe.security.provider.Kaffe: name=KAFFE version=1.0

With an older kaffe whose ChangeLog head is
   2005-06-29  Guilhem Lavaux  <[EMAIL PROTECTED]>,
with which SecureRandomTest passed, I can reproduce the error
by forcing SecureRandomTest to use gnu.java.security.provider.Gnu.

Change the lines in SecureRandomTest.java that read

sr = SecureRandom.getInstance("SHA1PRNG");
to
sr = SecureRandom.getInstance("SHA1PRNG", "GNU");

and you will see the same error.

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe