diff options
author | Kevin Hilman <khilman@baylibre.com> | 2017-07-06 21:24:20 +0000 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-07-06 21:26:25 +0000 |
commit | 43db61bbd5d2bc746e5eac35c1d5089298acf5b8 (patch) | |
tree | bca3546a6824ce79b9532cc18e411046122d7c86 | |
parent | 479fb8e869d7bf6ef057ad6dce453b5919b5e61b (diff) |
run-test-short: add set +x for debug
Change-Id: Id409ecaabe9320ac20424dae0559515a7bbe8ef7
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r-- | jjb/common/include-agl-run-test-short.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jjb/common/include-agl-run-test-short.sh b/jjb/common/include-agl-run-test-short.sh index 1ffc6f45..1f43a16a 100644 --- a/jjb/common/include-agl-run-test-short.sh +++ b/jjb/common/include-agl-run-test-short.sh @@ -6,7 +6,7 @@ ################################################################################ -#set -x +set +x echo "## ${MACHINE} ##" cd $REPODIR @@ -90,6 +90,7 @@ lava-tool submit-job --block https://agl-jenkins-user@lava.automotivelinux.org t MYJOB=`cat .myjob | grep "submitted as job" | sed -e "s#submitted as job id: ##g"` echo "#### JOBID: $MYJOB #####" +set -x ( lava-tool job-status https://agl-jenkins-user@lava.automotivelinux.org $MYJOB | tee .status ) || true STATUS=`grep "Job Status:" .status | sed -e "s#Job Status: ##g"` |