Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -50,7 +50,7 @@
import jdk.graal.compiler.core.test.GraalCompilerTest;
import jdk.graal.compiler.test.SubprocessUtil;
import jdk.graal.compiler.test.SubprocessUtil.Subprocess;
import jdk.graal.compiler.truffle.test.SLTruffleGraalTestSuite;
import jdk.graal.compiler.truffle.test.SLCompileASTTestSuite;

/**
* Tests support for dumping graphs and other info useful for debugging a compiler crash.
Expand Down Expand Up @@ -207,8 +207,9 @@ public void testTruffleCompilation1() throws IOException, InterruptedException {
"-Djdk.graal.CompilationFailureAction=ExitVM",
"-Dpolyglot.engine.CompilationFailureAction=ExitVM",
"-Dpolyglot.engine.TreatPerformanceWarningsAsErrors=all",
"-Dpolyglot.engine.AssertProbes=false",
"-Djdk.graal.CrashAt=root test1"),
SLTruffleGraalTestSuite.class.getName(), "test");
SLCompileASTTestSuite.class.getName(), "test");
}

/**
Expand All @@ -226,8 +227,9 @@ public void testTruffleCompilation2() throws IOException, InterruptedException {
"-Djdk.graal.CompilationFailureAction=Silent",
"-Dpolyglot.engine.CompilationFailureAction=ExitVM",
"-Dpolyglot.engine.TreatPerformanceWarningsAsErrors=all",
"-Dpolyglot.engine.AssertProbes=false",
"-Djdk.graal.CrashAt=root test1:PermanentBailout"),
SLTruffleGraalTestSuite.class.getName(), "test");
SLCompileASTTestSuite.class.getName(), "test");
}

private static final boolean VERBOSE = Boolean.getBoolean("CompilationWrapperTest.verbose");
Expand Down
Loading