diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2019-09-23 10:17:10 +0200 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2019-09-23 10:17:10 +0200 |
commit | 25afefcb3d424489fa96a61bffc4c21884b21ec1 (patch) | |
tree | f4cfb378e4ec1e866ca778a224e303cd22e3bd6f /jjb | |
parent | 741308270c99000db2299b3ea2a87e9dcca74f80 (diff) |
SPEC-2703: fix a typo on TESTNAME
TESTNAME was mispelled in the debug output.
Change-Id: I068da47c52626672f6e307349e95e03d3b7b20c3
Bug-AGL: SPEC-2703
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-lava-jobs-submit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/common/include-agl-lava-jobs-submit.sh b/jjb/common/include-agl-lava-jobs-submit.sh index a0a261bd..f42d4e04 100644 --- a/jjb/common/include-agl-lava-jobs-submit.sh +++ b/jjb/common/include-agl-lava-jobs-submit.sh @@ -117,10 +117,10 @@ handle_skiplist() { # Check if fail are "normal/accepted" TESTNAME=$(echo "$testline" | cut -d' ' -f2) if [ -z "$(grep $TESTNAME $SKIPLIST)" ];then - echo "DEBUG: $TESNAME not in skiplist" + echo "DEBUG: $TESTNAME not in skiplist" GOODJOB=0 else - echo "DEBUG: $TESNAME in skiplist" + echo "DEBUG: $TESTNAME in skiplist" fi done < job-result.fail # clean skiplist |