From 061914f0d53cb026a223468871d627831a9ab0ca Mon Sep 17 00:00:00 2001 From: Christopher Crone Date: Fri, 13 Oct 2017 13:40:21 +0200 Subject: [PATCH] e2e: Do not print test logs by default Signed-off-by: Christopher Crone Upstream-commit: 5195ec8fb064795df77290a100e5d21ee482d68a Component: engine --- components/engine/hack/test/e2e-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/engine/hack/test/e2e-run.sh b/components/engine/hack/test/e2e-run.sh index bfcc03f628..448f120895 100755 --- a/components/engine/hack/test/e2e-run.sh +++ b/components/engine/hack/test/e2e-run.sh @@ -16,7 +16,7 @@ run_test_integration() { } run_test_integration_suites() { - local flags="-test.v -test.timeout=${TIMEOUT} $TESTFLAGS" + local flags="-test.timeout=${TIMEOUT} $TESTFLAGS" for dir in /tests/integration/*; do if ! ( cd $dir @@ -28,7 +28,7 @@ run_test_integration_suites() { run_test_integration_legacy_suites() { ( - flags="-check.v -check.timeout=${TIMEOUT} -test.timeout=360m $TESTFLAGS_LEGACY" + flags="-check.timeout=${TIMEOUT} -test.timeout=360m $TESTFLAGS_LEGACY" cd /tests/integration-cli echo "Running $PWD" ./test.main $flags