From: Vladimir Petko Date: Mon, 24 Jul 2023 09:57:34 +0000 (+0100) Subject: armhf does not support frame unwinding, simplify assertion X-Git-Tag: archive/raspbian/17.0.8+7-1_deb12u1+rpi1^2~8 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5a9e4bc23a3ee14b2cfd24a1a2cca7777c06015d;p=openjdk-17.git armhf does not support frame unwinding, simplify assertion 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 --- diff --git a/test/hotspot/jtreg/runtime/NMT/VirtualAllocCommitMerge.java b/test/hotspot/jtreg/runtime/NMT/VirtualAllocCommitMerge.java index bbdd4d3e9..89a0d5ed9 100644 --- a/test/hotspot/jtreg/runtime/NMT/VirtualAllocCommitMerge.java +++ b/test/hotspot/jtreg/runtime/NMT/VirtualAllocCommitMerge.java @@ -320,6 +320,6 @@ public class VirtualAllocCommitMerge { 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 + ".*"); } }