diff --git a/scripts/ci/plat/generic/test.sh b/scripts/ci/plat/generic/test.sh index 3084c2c92..35bd63025 100755 --- a/scripts/ci/plat/generic/test.sh +++ b/scripts/ci/plat/generic/test.sh @@ -1,21 +1,16 @@ #!/bin/bash set -e -# Arguments -# 1. Bitness (i.e. 32, 64) - -if [[ "$#" -lt 1 ]]; then - echo "usage: test-generic.sh [bits]" - exit 1 -fi - -export KEYSTONE_BITS="$1" - if [[ -z "$CMD_LOGFILE" ]]; then echo "CMD_LOGFILE undefined" exit 1 fi +if [[ -z "$KEYSTONE_BITS" ]]; then + echo "KEYSTONE_BITS undefined" + exit 1 +fi + ############### ## Run tests ## ###############