OpenJDK / jdk / jdk
changeset 53954:b5f4a8477a20
8219789: [TESTBUG] TestOptionsWithRanges.java produces hs_err_pidXXXXX.log file for VMThreadStackSize=9007199254740991
Summary: Excluded test of mac range for VMThreadStackSize
Reviewed-by: coleenp, mseledtsov
author | gziemski |
---|---|
date | Thu, 28 Feb 2019 10:55:07 -0600 |
parents | 235b0e817c32 |
children | d15d4d610de4 |
files | test/hotspot/jtreg/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java |
diffstat | 1 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/test/hotspot/jtreg/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java Thu Feb 28 08:44:09 2019 -0500 +++ b/test/hotspot/jtreg/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java Thu Feb 28 10:55:07 2019 -0600 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -203,7 +203,13 @@ allOptionsAsMap = JVMOptionsUtils.getOptionsWithRangeAsMap(origin -> (!(origin.contains("develop") || origin.contains("notproduct")))); /* - * Remove CICompilerCount from testing because currently it can hang system + * Exclude VMThreadStackSize from max range testing, because it will always exit with code 1, + * which technically passes, but really it fails, and worse yet, it produces hs_err_pid file. + */ + excludeTestMaxRange("VMThreadStackSize"); + + /* + * Exclude CICompilerCount from testing because currently it can hang system */ excludeTestMaxRange("CICompilerCount");