The test fails on Jake because correctBootstrap.cfg uses old version of -Xpatch:
...
if [ "$IS_JIGSAW" = "true" ]; then
JAVA_OPTS=${JAVA_OPTS} -Xpatch:${TESTBASE}/bin/classes
...
The correct -Xpatch is:
if [ "$IS_JIGSAW" = "true" ]; then
JAVA_OPTS=${JAVA_OPTS} -Xpatch:java.base=${TESTBASE}/bin/classes/java.base
...
...
if [ "$IS_JIGSAW" = "true" ]; then
JAVA_OPTS=${JAVA_OPTS} -Xpatch:${TESTBASE}/bin/classes
...
The correct -Xpatch is:
if [ "$IS_JIGSAW" = "true" ]; then
JAVA_OPTS=${JAVA_OPTS} -Xpatch:java.base=${TESTBASE}/bin/classes/java.base
...