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

2005-07-08 Thread Jeroen Frijters
Of Daniel Bonniot Sent: Monday, June 27, 2005 19:32 To: classpath-patches@gnu.org Subject: [cp-patches] Re: Serialization: readResolve and writeReplace inparent class This seems like it must be duplicated somewhere, but I couldn't find it quickly. I also looked but could not find code

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

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 own VM

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

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 jamvm? Are there