8222533: jtreg test jdk/internal/platform/cgroup/TestCgroupMetrics.java fails on SLES12.3 linux ppc64le machine

Reviewed-by: mseledtsov, dholmes
This commit is contained in:
Bob Vandette 2019-05-10 11:18:45 -04:00
parent 11d3a2ce35
commit 1355621a42

View File

@ -108,7 +108,7 @@ public class SubSystem {
try {
List<String> lines = Files.readAllLines(Paths.get(subsystem.path(), param));
for (String line: lines) {
if (line.contains(match)) {
if (line.startsWith(match)) {
retval = conversion.apply(line);
break;
}