summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2018-11-16 13:41:31 +0100
committerAnders Roxell <anders.roxell@linaro.org>2018-11-16 14:31:51 +0100
commitf101ef36f7c1f29bdc56885e475ca3f23874c2d1 (patch)
treee3a7e6aeb44c94b0fd65e2e6ce2d7e773b8a6900
parent6071dd4c6f7827c0e5de40fe5029ff2b28401882 (diff)
automated: kselftest: kselftest.sh: just continue
If we pass an empty string to flag -S '' we ended up trying to wget http-skipfile.yaml that doesn't exists. If I only pass this in the job yaml file: parameters: KSELFTEST_PATH: /opt/kselftests/default-in-kernel/ The solution were to add a test if string length is zero then just continue. Change-Id: I7dd396b6263daa3c79e8166ff57e1fad28828316 Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
-rwxr-xr-xautomated/linux/kselftest/kselftest.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/automated/linux/kselftest/kselftest.sh b/automated/linux/kselftest/kselftest.sh
index 033105a..957be07 100755
--- a/automated/linux/kselftest/kselftest.sh
+++ b/automated/linux/kselftest/kselftest.sh
@@ -61,6 +61,9 @@ while getopts "t:s:u:p:L:S:b:g:e:h" opt; do
# SKIPFILE="${SCRIPTPATH}/${SKIPFILE}"
#fi
+ if [ -z "${OPTARGS}" ]; then
+ continue
+ fi
if [ -z "${OPTARG##*http*}" ]; then
if [ -z "${OPTARG##*yaml*}" ]; then
# Skipfile is of type yaml