1
1
/*
2
- * Copyright (c) 2013, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2013, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
50
50
import jdk .graal .compiler .core .test .GraalCompilerTest ;
51
51
import jdk .graal .compiler .test .SubprocessUtil ;
52
52
import jdk .graal .compiler .test .SubprocessUtil .Subprocess ;
53
- import jdk .graal .compiler .truffle .test .SLTruffleGraalTestSuite ;
53
+ import jdk .graal .compiler .truffle .test .SLCompileASTTestSuite ;
54
54
55
55
/**
56
56
* Tests support for dumping graphs and other info useful for debugging a compiler crash.
@@ -207,8 +207,9 @@ public void testTruffleCompilation1() throws IOException, InterruptedException {
207
207
"-Djdk.graal.CompilationFailureAction=ExitVM" ,
208
208
"-Dpolyglot.engine.CompilationFailureAction=ExitVM" ,
209
209
"-Dpolyglot.engine.TreatPerformanceWarningsAsErrors=all" ,
210
+ "-Dpolyglot.engine.AssertProbes=false" ,
210
211
"-Djdk.graal.CrashAt=root test1" ),
211
- SLTruffleGraalTestSuite .class .getName (), "test" );
212
+ SLCompileASTTestSuite .class .getName (), "test" );
212
213
}
213
214
214
215
/**
@@ -226,8 +227,9 @@ public void testTruffleCompilation2() throws IOException, InterruptedException {
226
227
"-Djdk.graal.CompilationFailureAction=Silent" ,
227
228
"-Dpolyglot.engine.CompilationFailureAction=ExitVM" ,
228
229
"-Dpolyglot.engine.TreatPerformanceWarningsAsErrors=all" ,
230
+ "-Dpolyglot.engine.AssertProbes=false" ,
229
231
"-Djdk.graal.CrashAt=root test1:PermanentBailout" ),
230
- SLTruffleGraalTestSuite .class .getName (), "test" );
232
+ SLCompileASTTestSuite .class .getName (), "test" );
231
233
}
232
234
233
235
private static final boolean VERBOSE = Boolean .getBoolean ("CompilationWrapperTest.verbose" );
0 commit comments