Skip to content

Commit c20262e

Browse files
committed
adding FULL_LOG flag
1 parent f461759 commit c20262e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

hack/jenkins/benchmark-dockerized.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export KUBE_RACE=" "
4141
# Disable coverage report
4242
export KUBE_COVER="n"
4343
export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
44+
export FULL_LOG="true"
4445

4546
mkdir -p "${ARTIFACTS}"
4647
cd /go/src/k8s.io/kubernetes

hack/make-rules/test.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ if [[ -n "${KUBE_JUNIT_REPORT_DIR}" ]] ; then
188188
go_test_grep_pattern="^[^[:space:]]\+[[:space:]]\+[^[:space:]]\+/[^[[:space:]]\+"
189189
fi
190190

191+
if [[ -n "${FULL_LOG:-}" ]] ; then
192+
go_test_grep_pattern=".*"
193+
fi
194+
191195
# Filter out arguments that start with "-" and move them to goflags.
192196
testcases=()
193197
for arg; do

0 commit comments

Comments
 (0)