summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2018-04-24 21:21:35 +0530
committerVishal Bhoj <vishal.bhoj@linaro.org>2018-04-24 16:29:15 +0000
commitda9fe296850c34e301dc6af02f6a983d2dd9c111 (patch)
treea43e35489d620677306a7a2a9c5c3c26d2e40697
parent7876fe29a141754133766cb4ab74e5bec37faf85 (diff)
tradefed: don't exit monitor_fastboot.sh on failure
due to bugs in fastboot protocol in hikey UEFI, we get error reported on host while running fastboot boot boot.img due to which the script exits which should not happen. The target reports error but still boots the downloaded image. as a result, at next reboot in the test the script won't be running to provide boot.img Here are such jobs: https://lkft.validation.linaro.org/scheduler/job/194938#L6099 https://lkft.validation.linaro.org/scheduler/job/195058#L5872 Change-Id: I3f10973272ea793e5cc2d5ce118092837174ee0d Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
-rwxr-xr-xautomated/android/tradefed/monitor_fastboot.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/automated/android/tradefed/monitor_fastboot.sh b/automated/android/tradefed/monitor_fastboot.sh
index 9c6aea4..62e066c 100755
--- a/automated/android/tradefed/monitor_fastboot.sh
+++ b/automated/android/tradefed/monitor_fastboot.sh
@@ -1,4 +1,4 @@
-#!/bin/sh -ex
+#!/bin/sh -x
while true; do
fastboot boot /lava-lxc/boot.img
done