diff --git a/test/hotspot/jtreg/serviceability/sa/TestSysProps.java b/test/hotspot/jtreg/serviceability/sa/TestSysProps.java index ee01fedc4bf..364849259db 100644 --- a/test/hotspot/jtreg/serviceability/sa/TestSysProps.java +++ b/test/hotspot/jtreg/serviceability/sa/TestSysProps.java @@ -110,9 +110,18 @@ public static void main (String... args) throws Exception { 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