mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-20 23:36:18 +00:00
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:
parent
3a6249d0c7
commit
82dfec76c6
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user