8242384: sa/TestSysProps.java failed due to "RuntimeException: Could not find property in jinfo output: [0.058s][info][cds] Archive was created with UseCompressedOops"

Reviewed-by: dcubed
This commit is contained in:
Chris Plummer 2020-04-08 14:11:06 -07:00
parent 3a6249d0c7
commit 82dfec76c6

View File

@ -110,9 +110,18 @@ public class TestSysProps {
String[] jinfoLines = jinfoOut.getStdout().split("\\R");
String[] appLines = app.getOutput().getStdout().split("\\R");
int numAppProps = 0;
boolean foundStartOfList = false;
for (String appProp : appLines) {
boolean found;
// Skip any output that occurs before the first property
if (!foundStartOfList) {
if (appProp.indexOf("-- listing properties --") != -1) {
foundStartOfList = true;
}
continue;
}
// Find the next property in the app output
int idx = appProp.indexOf("=");
if (idx == -1) continue; // This line does not contain a property