adding FULL_LOG flag

This commit is contained in:
Krzysztof Siedlecki 2019-02-07 12:04:43 +01:00
parent f461759dc9
commit c20262eb33
2 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,7 @@ export KUBE_RACE=" "
# Disable coverage report
export KUBE_COVER="n"
export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
export FULL_LOG="true"
mkdir -p "${ARTIFACTS}"
cd /go/src/k8s.io/kubernetes

View File

@ -188,6 +188,10 @@ if [[ -n "${KUBE_JUNIT_REPORT_DIR}" ]] ; then
go_test_grep_pattern="^[^[:space:]]\+[[:space:]]\+[^[:space:]]\+/[^[[:space:]]\+"
fi
if [[ -n "${FULL_LOG:-}" ]] ; then
go_test_grep_pattern=".*"
fi
# Filter out arguments that start with "-" and move them to goflags.
testcases=()
for arg; do