public static void main(String[] args) throws Exception {
// Known issue on Solaris-Sparc
// @ignoreJDK-8044600
if (Platform.isSolaris() && Platform.isSparc())
return;
is still there even thoughJDK-8044600 was closed.
// Known issue on Solaris-Sparc
// @ignore
if (Platform.isSolaris() && Platform.isSparc())
return;
is still there even though