Skip to content

Commit c7f9c44

Browse files
Fixed review comments.
1 parent 67c6bbe commit c7f9c44

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ out/
6060

6161
# Others #
6262
##########
63+
/dumps
6364
/logs/*
6465
/bin
6566
/out

dd-smoke-tests/src/main/groovy/datadog/smoketest/ProcessManager.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ abstract class ProcessManager extends Specification {
118118
try {
119119
exitValue = tp.exitValue()
120120
} catch (Throwable ignored) {
121-
System.out.println("Destroying instrumented process")
121+
System.err.println("Destroying instrumented process")
122122
tp.destroy()
123123

124124
if (!tp.waitFor(5, TimeUnit.SECONDS)) {
125-
System.out.println("Destroying instrumented process (forced)")
125+
System.err.println("Destroying instrumented process (forced)")
126126
tp.destroyForcibly()
127127
tp.waitFor(10, TimeUnit.SECONDS)
128128
}
@@ -142,7 +142,7 @@ abstract class ProcessManager extends Specification {
142142
}
143143
}
144144

145-
System.out.println("Instrumented process exited with " + exitValue)
145+
System.err.println("Instrumented process exited with " + exitValue)
146146
}
147147

148148
if (firstFailure != null) {

0 commit comments

Comments
 (0)