Skip to content

Commit 975e42f

Browse files
committed
[GR-32154] --engine.InstrumentExceptionsAreThrown=true is default now, no need to set it
PullRequest: truffleruby/2899
2 parents 8e4439b + a437a79 commit 975e42f

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
"openjdk11": {"name": "openjdk", "version": "11.0.11+9", "platformspecific": true },
1010
"oraclejdk11": {"name": "oraclejdk", "version": "11.0.11+9", "platformspecific": true },
11-
"labsjdk-ce-11": {"name": "labsjdk", "version": "ce-11.0.12+5-jvmci-21.3-b01", "platformspecific": true },
11+
"labsjdk-ce-11": {"name": "labsjdk", "version": "ce-11.0.12+5-jvmci-21.3-b02", "platformspecific": true },
1212
"labsjdk-ee-11": {"name": "labsjdk", "version": "ee-11.0.13+6-jvmci-21.3-b02", "platformspecific": true },
1313

1414
"oraclejdk17": {"name": "oraclejdk", "version": "17.0.1+2", "platformspecific": true },

mx.truffleruby/suite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{
88
"name": "regex",
99
"subdir": True,
10-
"version": "7324aa030b5e0dcda65869aa3d7b936bde21f61a",
10+
"version": "669b129df19baddff441cf20f72020f4b0c41cc9",
1111
"urls": [
1212
{"url": "https://github.com/oracle/graal.git", "kind": "git"},
1313
{"url": "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind": "binary"},
@@ -16,7 +16,7 @@
1616
{
1717
"name": "sulong",
1818
"subdir": True,
19-
"version": "7324aa030b5e0dcda65869aa3d7b936bde21f61a",
19+
"version": "669b129df19baddff441cf20f72020f4b0c41cc9",
2020
"urls": [
2121
{"url": "https://github.com/oracle/graal.git", "kind": "git"},
2222
{"url": "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind": "binary"},

src/launcher/java/org/truffleruby/launcher/RubyLauncher.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ protected List<String> preprocessArguments(List<String> args, Map<String, String
6969
polyglotOptions.put(OptionsCatalog.LAUNCHER.getName(), launcher);
7070
}
7171

72-
// Instrumentation should not swallow exceptions, especially exceptions from Truffle safepoints (GR-32154)
73-
polyglotOptions.put("engine.InstrumentExceptionsAreThrown", "true");
7472
// TruffleRuby is never distributed without the GraalVM compiler, so this warning is not necessary
7573
polyglotOptions.put("engine.WarnInterpreterOnly", "false");
7674

0 commit comments

Comments
 (0)