Integration with grpc-settable logger.

This commit is contained in:
Piotr Tabor
2021-03-15 21:23:38 +01:00
parent e599f4a482
commit a84bd093b0
11 changed files with 33 additions and 40 deletions

View File

@@ -242,10 +242,6 @@ function go_test {
if [ "${VERBOSE}" == "1" ]; then
goTestFlags="-v"
fi
if [ "${VERBOSE}" == "2" ]; then
goTestFlags="-v"
goTestEnv="CLIENT_DEBUG=1"
fi
# Expanding patterns (like ./...) into list of packages
@@ -270,6 +266,7 @@ function go_test {
# shellcheck disable=SC2206
local cmd=( go test ${goTestFlags} ${additional_flags} "$@" ${pkg} )
# shellcheck disable=SC2086
if ! run env ${goTestEnv} "${cmd[@]}" ; then
if [ "${mode}" != "keep_going" ]; then
return 2