Skip to content

Commit f62b81c

Browse files
committed
8273095: vmTestbase/vm/mlvm/anonloader/stress/oome/heap/Test.java fails with "wrong OOME"
Reviewed-by: shade, stefank
1 parent 05a9a51 commit f62b81c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

test/hotspot/jtreg/ProblemList-Xcomp.txt

-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ vmTestbase/vm/mlvm/mixed/stress/regression/b6969574/INDIFY_Test.java 8265295 lin
3535

3636
vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t002/TestDescription.java 8245680 windows-x64
3737

38-
vmTestbase/vm/mlvm/hiddenloader/stress/oome/heap/Test.java 8273095 generic-all
39-
4038
serviceability/sa/TestJhsdbJstackMixed.java 8248675 linux-aarch64
4139

4240
compiler/codegen/aes/TestAESMain.java 8274323 linux-x64,windows-x64

test/hotspot/jtreg/vmTestbase/vm/mlvm/hiddenloader/stress/oome/heap/Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class Test extends MlvmOOMTest {
6363
@Override
6464
protected void checkOOME(OutOfMemoryError oome) {
6565
String message = oome.getMessage();
66-
if (!"Java heap space".equals(message)) {
66+
if (!message.startsWith("Java heap space")) {
6767
throw new RuntimeException("TEST FAIL : wrong OOME", oome);
6868
}
6969
}

0 commit comments

Comments
 (0)