8244224: Implementation of JEP 381: Remove the Solaris and SPARC Ports

Reviewed-by: alanb, bchristi, dcubed, dfuchs, eosterlund, erikj, glaubitz, ihse, iignatyev, jjiang, kbarrett, ksrini, kvn, naoto, prr, rriggs, serb, sspitsyn, stefank, tschatzl, valeriep, weijun, weijun
This commit is contained in:
Mikael Vidstedt 2020-05-20 17:33:37 -07:00
parent 9fe4b69c1a
commit 071bd521bc
954 changed files with 1093 additions and 127816 deletions

View file

@ -49,13 +49,6 @@ public class TimeoutInErrorHandlingTest {
public static final int ERROR_LOG_TIMEOUT = 16;
public static void main(String[] args) throws Exception {
int error_log_timeout = ERROR_LOG_TIMEOUT;
if ("SunOS".equals(System.getProperty("os.name"))) {
// Give Solaris machines 3X as much time:
error_log_timeout *= 3;
}
/* Start the VM and let it crash. Specify TestUnresponsiveErrorHandler which will
* let five subsequent error reporting steps hang. The Timeout handling triggered
* by the WatcherThread should kick in and interrupt those steps. In theory, the
@ -82,7 +75,7 @@ public class TimeoutInErrorHandlingTest {
"-Xmx100M",
"-XX:ErrorHandlerTest=14",
"-XX:+TestUnresponsiveErrorHandler",
"-XX:ErrorLogTimeout=" + error_log_timeout,
"-XX:ErrorLogTimeout=" + ERROR_LOG_TIMEOUT,
"-XX:-CreateCoredumpOnCrash",
"-version");