We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92faa53 commit b9c5af5Copy full SHA for b9c5af5
dd-smoke-tests/src/main/groovy/datadog/smoketest/AbstractSmokeTest.groovy
@@ -154,11 +154,11 @@ abstract class AbstractSmokeTest extends ProcessManager {
154
]
155
156
157
- // DQH - 13 Nov 2024 - Crashtracking bash script oesn't work on OS X,
+ // DQH - 13 Nov 2024 - Crashtracking bash script doesn't work on OS X,
158
// so skipping crash tracking on OS X
159
- if (!Platform.isMac()) {
+ if (!Platform.isMac() && !Platform.isJ9()) {
160
def errorScript = tmpDir + "/dd_crash_uploader." + getScriptExtension()
161
- def onErrorValue = '"' + errorScript + ' %p"'
+ def onErrorValue = errorScript + ' %p'
162
163
ret += "-XX:OnError=" + onErrorValue
164
}
0 commit comments