RE: [cp-patches] Re: Serialization: readResolve and writeReplace inparent class

2005-07-08 Thread Jeroen Frijters
Hi Daniel, Your patch broke the Mauve gnu.testlet.java.io.Serializable.readResolve test. If the readResolve method is in the current class and it is private it is no longer found. Regards, Jeroen > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > On Behalf Of

Re: [cp-patches] Re: Serialization: readResolve and writeReplace inparent class

2005-07-08 Thread Daniel Bonniot
Hi Jeroen Frijters, Your patch broke the Mauve gnu.testlet.java.io.Serializable.readResolve test. What VM do you get this failure with? I tried again with jamvm and classpath with my patch (and without yours) and all java.io.Serializable tests pass (0/5 failures). If the readResolve metho

RE: [cp-patches] Re: Serialization: readResolve and writeReplace inparent class

2005-07-08 Thread Jeroen Frijters
Daniel Bonniot wrote: > > Your patch broke the Mauve > gnu.testlet.java.io.Serializable.readResolve > > test. > > What VM do you get this failure with? I tried again with > jamvm and classpath with my patch (and without yours) and all > java.io.Serializable tests pass (0/5 failures). I used my

Re: [cp-patches] Re: Serialization: readResolve and writeReplace inparent class

2005-07-08 Thread Tom Tromey
Daniel> Actually, this is a VM concern rather than a class library one, so I'm Daniel> not sure where such tests belong. Is there a common VM testsuite at Daniel> all? (other things that could be tested: integer and floating point Daniel> arithmetics, synchronization, ...) There isn't one, but I w

Re: [cp-patches] Re: Serialization: readResolve and writeReplace inparent class

2005-07-08 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. Daniel Bonniot wrote: >> I used my own VM (IKVM.NET). > > > :-) > >> I'm fairly confident that IKVM.NET does the right thing. My guess is >> that JamVM incorrectly allows calls to private methods. > > > Is this a known missing feature in jamv