Signed-off-by: Tibor Vass <tibor@docker.com>
| ... | ... |
@@ -286,6 +286,7 @@ pipeline {
|
| 286 | 286 |
sh '''#!/bin/bash |
| 287 | 287 |
# bash is needed so 'jobs -p' works properly |
| 288 | 288 |
# it also accepts setting inline envvars for functions without explicitly exporting |
| 289 |
+ set -x |
|
| 289 | 290 |
|
| 290 | 291 |
run_tests() {
|
| 291 | 292 |
[ -n "$TESTDEBUG" ] && rm= || rm=--rm; |
| ... | ... |
@@ -335,7 +336,6 @@ pipeline {
|
| 335 | 335 |
# integration-cli second set |
| 336 | 336 |
TEST_INTEGRATION_DEST=3 CONTAINER_NAME=${CONTAINER_NAME}-3 TEST_SKIP_INTEGRATION=1 TESTFLAGS="-test.run Test(DockerSwarmSuite|DockerDaemonSuite|DockerExternalVolumeSuite)/" run_tests &
|
| 337 | 337 |
|
| 338 |
- set +x |
|
| 339 | 338 |
c=0 |
| 340 | 339 |
for job in $(jobs -p); do |
| 341 | 340 |
wait ${job} || c=$?
|