Note: Known intermittent issue with POWER7 support on Java 1.4.2
Problem Description:
The exception ArrayIndexOutofBounds is thrown from a method that is JIT compiled.
Workaround:
Skip JIT compilation of the Java method that throws the exception using the option: export JITC_COMPILEOPT=SKIP{fully qualified classname}{methodname}
For example, if the ArrayIndexOutOfBounds occurs in the method testcases/benchmarks/jbytemark/StringSortTest.strsift,
and the method is also JIT compiled, you can skip JIT compilation for the method using the following option: export JITC_COMPILEOPT=SKIP{testcases/benchmarks/jbytemark/StringSortTest}{strsift}