Bug: https://bugs.openjdk.org/browse/JDK-
8305480
os::current_frame() is stubbed out on armhf and this test fails.
Simplify assertion as there is no "from xxxx" output on armhf.
Gbp-Pq: Name update-assertion-for-armhf.patch
public static void checkCommitted(OutputAnalyzer output, long addr, long size, String sizeString) {
output.shouldMatch("\\[0x[0]*" + Long.toHexString(addr) + " - 0x[0]*"
+ Long.toHexString(addr + size)
- + "\\] committed " + sizeString + " from.*");
+ + "\\] committed " + sizeString + ".*");
}
}