cvs archive via rsync/cvsup ?

2002-04-14 Thread Andrew Dalgleish


Is the cvs archive available via rsync or cvsup?



Re: Interesting results...

2002-03-22 Thread Andrew Dalgleish


On Fri, Mar 22, 2002 at 01:17:24PM -0700, Patrick Tullmann wrote:
 Just a suggestion: could someone strip wc.java down to a testcase that
 causes this problem and (assuming its really a compiler problem),
 name the testcase BrokenCompilerCheck.java or something?  Put it early
 in the test run, too.
 
 That will make diagnosing failures much easier in the future.

Once you start down that road, where do you stop?
Should Kaffe's make check include a full test suit for all compilers?


OpenBSD-current, jikes 1.15, kaffe from CVS

I reduced wc.java to this:

import java.io.*;
public class wc {
public static void main(String av[]) {
InputStreamReader isr = new InputStreamReader(null);
StreamTokenizer s = new StreamTokenizer(isr);
}
}
/* Expected Output:

*/

configure, rebuild Klasses.jar, make, make check

I get this in wc.fail:
java.lang.VerifyError: at pc 5 sp 7 not in range [4, 6]
at java.io.PushbackReader.init(PushbackReader.java:32)
at java.io.StreamTokenizer.init(StreamTokenizer.java:50)
at wc.main(wc.java:5)

If I remove the blank line in the 'Expected Output' comment I don't
get any error.



Re: Interesting results...

2002-03-21 Thread Andrew Dalgleish


On Thu, Mar 21, 2002 at 05:17:13PM +1100, Andrew Dalgleish wrote:
 
 On Thu, Mar 21, 2002 at 04:42:13AM +0100, Dalibor Topic wrote:
  Try to rebuild Klasses.jar using jikes 1.13
 
 jikes == 1.13 or jikes = 1.13?
 
 With jikes == 1.15 on OpenBSD-current I get:
 FAIL: DoubleCvt.java
 FAIL: TestSerializable2.java
 FAIL: Alias.java

These three all have this error:
/usr/libexec/ld.so: Undefined symbol _floor called from
lt-Kaffe:/.../kaffe/kaffevm/.libs/libkaffevm.so.0.0 at 0x4006ea7c

If I add libm to LD_PRELOAD they pass.

I'm guessing this bit from configure may be related:
checking whether deplibs are loaded by dlopen... unknown

 FAIL: wc.java

This still gives the same error:
java.lang.VerifyError: at pc 5 sp 7 not in range [4, 6]



Re: Interesting results...

2002-03-21 Thread Andrew Dalgleish

On Thu, Mar 21, 2002 at 05:33:21PM +0100, Dalibor Topic wrote:
 
 On Thursday, 21. March 2002 13:24, Andrew Dalgleish wrote:
  On Thu, Mar 21, 2002 at 05:17:13PM +1100, Andrew Dalgleish wrote:
   On Thu, Mar 21, 2002 at 04:42:13AM +0100, Dalibor Topic wrote:
Try to rebuild Klasses.jar using jikes 1.13
  
   jikes == 1.13 or jikes = 1.13?
  
   With jikes == 1.15 on OpenBSD-current I get:
 
   FAIL: wc.java
 
  This still gives the same error:
  java.lang.VerifyError: at pc 5 sp 7 not in range [4, 6]
 
 could you post the offending class file?

Works ok with jikes 1.13.

With jikes == 1.15 built from their tarball, the file
test/regression/wc.java in CVS gives this error in wc.fail

java.lang.VerifyError: at pc 5 sp 7 not in range [4, 6]
at java.io.PushbackReader.init(PushbackReader.java:32)
at java.io.StreamTokenizer.init(StreamTokenizer.java:50)
at wc.init(wc.java:72)
at wc.main(wc.java:104)

wc.class.gz attached, but I'm happy to use 1.13



wc.class.gz
Description: application/gunzip


Re: Interesting results...

2002-03-20 Thread Andrew Dalgleish


On Thu, Mar 21, 2002 at 04:42:13AM +0100, Dalibor Topic wrote:
 Try to rebuild Klasses.jar using jikes 1.13

jikes == 1.13 or jikes = 1.13?

With jikes == 1.15 on OpenBSD-current I get:
FAIL: DoubleCvt.java
FAIL: TestSerializable2.java
FAIL: Alias.java
FAIL: wc.java

With jikes == 1.13 on Cygwin I get:
FAIL: StackDump.java
FAIL: UncaughtException.java
FAIL: Preempt.java
FAIL: Alias.java
FAIL: NullInvoke.java
FAIL: LostFrame.java
FAIL: ProcessTest.java
FAIL: wc.java
FAIL: finalexc.java
FAIL: KaffeVerifyBug.java
FAIL: CharArrayReaderTest.java
FAIL: LineNumberReaderTest.java
FAIL: BufferedReaderTest.java
FAIL: ExceptionInInitializerTest.java
FAIL: ProcessClassTest.java
FAIL: ProcessClassInst.java
FAIL: ExecTest.java
with a few crashes and a few hangs.

I'm rebuilding with debug symbols now.



Re: Interesting results...

2002-03-20 Thread Andrew Dalgleish


On Thu, Mar 21, 2002 at 05:17:13PM +1100, Andrew Dalgleish wrote:
 
 With jikes == 1.13 on Cygwin I get:
 FAIL: StackDump.java

I've rebuilt Kaffe with debug symbols.
It seems I'm getting a sigsegv in cygwin1.dll.
Rebuilding cygwin now...