Skip to content

Commit

Permalink
Silence the Test runner's debug output when we runs as a persistent r…
Browse files Browse the repository at this point in the history
…unner as it corrupts its stdout

RELNOTES: None
PiperOrigin-RevId: 154838603
  • Loading branch information
kush-c authored and damienmg committed May 3, 2017
1 parent d8461b5 commit 0871815
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,10 @@ export CLASSLOADER_PREFIX_PATH="${RUNPATH}"
if [[ -n "$JVM_DEBUG_PORT" ]]; then
JVM_DEBUG_SUSPEND=${DEFAULT_JVM_DEBUG_SUSPEND:-"y"}
JVM_DEBUG_FLAGS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=${JVM_DEBUG_SUSPEND},address=${JVM_DEBUG_PORT}"

if [[ "$PERSISTENT_TEST_RUNNER" == "true" ]]; then
JVM_DEBUG_FLAGS+=",quiet=y"
fi
fi

if [[ -n "$MAIN_ADVICE_CLASSPATH" ]]; then
Expand Down

0 comments on commit 0871815

Please sign in to comment.