Browse code

e2e: Do not print test logs by default

Signed-off-by: Christopher Crone <christopher.crone@docker.com>

Christopher Crone authored on 2017/10/13 20:40:21
Showing 1 changed files
... ...
@@ -16,7 +16,7 @@ run_test_integration() {
16 16
 }
17 17
 
18 18
 run_test_integration_suites() {
19
-  local flags="-test.v -test.timeout=${TIMEOUT} $TESTFLAGS"
19
+  local flags="-test.timeout=${TIMEOUT} $TESTFLAGS"
20 20
   for dir in /tests/integration/*; do
21 21
     if ! (
22 22
       cd $dir
... ...
@@ -28,7 +28,7 @@ run_test_integration_suites() {
28 28
 
29 29
 run_test_integration_legacy_suites() {
30 30
   (
31
-    flags="-check.v -check.timeout=${TIMEOUT} -test.timeout=360m $TESTFLAGS_LEGACY"
31
+    flags="-check.timeout=${TIMEOUT} -test.timeout=360m $TESTFLAGS_LEGACY"
32 32
     cd /tests/integration-cli
33 33
     echo "Running $PWD"
34 34
     ./test.main $flags