diff --git a/hack/jenkins/benchmark-dockerized.sh b/hack/jenkins/benchmark-dockerized.sh index 60fde5fb309..22627ebd20e 100755 --- a/hack/jenkins/benchmark-dockerized.sh +++ b/hack/jenkins/benchmark-dockerized.sh @@ -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 diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh index 4d380c34092..d5c3661a33d 100755 --- a/hack/make-rules/test.sh +++ b/hack/make-rules/test.sh @@ -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