summaryrefslogtreecommitdiffstats
path: root/scripts/contrib
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-09-29 20:10:08 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-01 21:45:56 +0100
commiteb1c8cd1d938cb4d1bf44c525cea1eafb52cdb96 (patch)
tree01fb2e92f6e45c49aedbad57ff64f35d104218a7 /scripts/contrib
parenta8002cb367c9acd61471d1e11e7b48db607f9298 (diff)
downloadpoky-eb1c8cd1d938cb4d1bf44c525cea1eafb52cdb96.tar.gz
build-perf-test-wrapper.sh: check for positional arguments
Stricter checking of command line arguments. The script doesn't use any positional arguments so don't accept any and error out if those are found. (From OE-Core rev: 4725ee8e4e4837446dfa3a319eb68cc9572c55eb) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-xscripts/contrib/build-perf-test-wrapper.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/contrib/build-perf-test-wrapper.sh b/scripts/contrib/build-perf-test-wrapper.sh
index d61e438933..90dd545495 100755
--- a/scripts/contrib/build-perf-test-wrapper.sh
+++ b/scripts/contrib/build-perf-test-wrapper.sh
@@ -57,6 +57,14 @@ while getopts "ha:c:C:w:" opt; do
57 esac 57 esac
58done 58done
59 59
60# Check positional args
61shift "$((OPTIND - 1))"
62if [ $# -ne 0 ]; then
63 echo "ERROR: No positional args are accepted."
64 usage
65 exit 1
66fi
67
60echo "Running on `uname -n`" 68echo "Running on `uname -n`"
61if ! git_topdir=$(git rev-parse --show-toplevel); then 69if ! git_topdir=$(git rev-parse --show-toplevel); then
62 echo "The current working dir doesn't seem to be a git clone. Please cd there before running `basename $0`" 70 echo "The current working dir doesn't seem to be a git clone. Please cd there before running `basename $0`"