JDK-8222501 : [TESTBUG] Docker support is always set to true in jtreg-ext/requires/VMProps.java
  • Type: Bug
  • Component: hotspot
  • Sub-Component: runtime
  • Affected Version: 13
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2019-04-15
  • Updated: 2019-08-15
  • Resolved: 2019-04-15
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 13
13 b17Fixed
Related Reports
Relates :  
Description
This was pushed by accident when integrating "JDK-8221711: [TESTBUG] create more tests for JFR in container environment"
Comments
========= FIX =========== --- a/test/jtreg-ext/requires/VMProps.java +++ b/test/jtreg-ext/requires/VMProps.java @@ -425,7 +425,7 @@ * @return true if docker is supported in a given environment */ protected String dockerSupport() { - boolean isSupported = true; + boolean isSupported = false; if (Platform.isLinux()) { // currently docker testing is only supported for Linux, // on certain platforms
15-04-2019