diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-04-10 17:20:57 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-04-10 17:20:57 +0200 |
commit | c81da88b251dfee7eec7c754aec2f9078544f2ec (patch) | |
tree | ac61fe822ba9aa3de26c24f51db920f6bb200469 | |
parent | 7e46dc65bd5a4198bddbfa2d401689efc9ce35e4 (diff) |
Always ignore lava.read-feedback
lava.read-feedback is currently returned by default on qemu jobs.
This is a known issue upstream and fixed in a later version.
Thus ignore a single fail of 'lava.read-feedback'.
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I2e6c3c779c87ec539d631b129a452998a0ec70f3
-rw-r--r-- | jjb/common/include-agl-lava-jobs-submit.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/jjb/common/include-agl-lava-jobs-submit.sh b/jjb/common/include-agl-lava-jobs-submit.sh index ebc5c1a9..a94b25bc 100644 --- a/jjb/common/include-agl-lava-jobs-submit.sh +++ b/jjb/common/include-agl-lava-jobs-submit.sh @@ -122,6 +122,12 @@ handle_result() { do # Check if fail are "normal/accepted" TESTNAME=$(echo "$testline" | cut -d' ' -f2) + + # always skip lava.read-feedback (alone) + if [ x"lava.read-feedback" = x"$TESTNAME" ] ; then + continue + fi + if [ -z "$(grep $TESTNAME $SKIPLIST)" ];then echo "DEBUG: $TESTNAME not in skiplist" GOODJOB=0 @@ -136,7 +142,7 @@ handle_result() { # Analyze jobs results lavacli -i $lab results $job_id | tee job-result - +set -x # GOODJOB is equal to 0 if any test fail (and not present in a skiplist), 1 if all test are success GOODJOB=1 grep '\[fail\]$' job-result > job-result.fail || true |