File tree 2 files changed +1
-3
lines changed
vmTestbase/vm/mlvm/hiddenloader/stress/oome/heap
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ vmTestbase/vm/mlvm/mixed/stress/regression/b6969574/INDIFY_Test.java 8265295 lin
35
35
36
36
vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t002/TestDescription.java 8245680 windows-x64
37
37
38
- vmTestbase/vm/mlvm/hiddenloader/stress/oome/heap/Test.java 8273095 generic-all
39
-
40
38
serviceability/sa/TestJhsdbJstackMixed.java 8248675 linux-aarch64
41
39
42
40
compiler/codegen/aes/TestAESMain.java 8274323 linux-x64,windows-x64
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ public class Test extends MlvmOOMTest {
63
63
@ Override
64
64
protected void checkOOME (OutOfMemoryError oome ) {
65
65
String message = oome .getMessage ();
66
- if (!"Java heap space" . equals ( message )) {
66
+ if (!message . startsWith ( "Java heap space" )) {
67
67
throw new RuntimeException ("TEST FAIL : wrong OOME" , oome );
68
68
}
69
69
}
You can’t perform that action at this time.
0 commit comments