File tree Expand file tree Collapse file tree
dd-smoke-tests/src/main/groovy/datadog/smoketest Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060
6161# Others #
6262# #########
63+ /dumps
6364/logs /*
6465/bin
6566/out
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments