=== libjava Summary ===
# of expected passes 1486
# of unexpected failures 65
# of unexpected successes 6
# of expected failures 18
# of untested testcases 141
Almost all the unexpected failures are of the form
ArrayClass.java: In class `ArrayClass':
ArrayClass.java: In method `class$(java.lang.String)':
ArrayClass.java:0: expected type 'int' but stack contains 'java.lang.ClassNotFoundException'
ArrayClass.java:0: verification error at PC=7
ArrayClass.java:0: expected type 'null' but stack contains 'int'
FAIL: ArrayClass compilation from bytecode
The method and PC obviously vary with the test case. Also, the
precise thing on the stack when it's expecting an int varies, but it's
always java.lang.SomeSortOfException or java.lang.Throwable. Twice,
the second expected/found pair was java.lang.Object/int not null/int.
Everything else is the same always.
zw
Good. The total Java breakage on my system (x86 Linux) was fixed by
the stack adjust patch that went in yesterday (the thread was called
"Exception handling: stack adjust in cleanups") and my guess is that
this is also the case for you.
Out of interest, what target system was this?
Andrew.