Commit 72441ea5 authored by Po-Hsu Lin's avatar Po-Hsu Lin Committed by Shuah Khan

selftests: check percentage range for memory-hotplug test

Check the precentage range for -r flag in memory-hotplug test.
Signed-off-by: default avatarPo-Hsu Lin <po-hsu.lin@canonical.com>
Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
parent a34b28c9
...@@ -136,6 +136,10 @@ while getopts e:hp:r: opt; do ...@@ -136,6 +136,10 @@ while getopts e:hp:r: opt; do
;; ;;
r) r)
ratio=$OPTARG ratio=$OPTARG
if [ "$ratio" -gt 100 ] || [ "$ratio" -lt 0 ]; then
echo "The percentage should be an integer within 0~100 range"
exit 1
fi
;; ;;
esac esac
done done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment