testfwk_xdevice/run.sh

47 lines
1.1 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
# Copyright (c) Huawei Technologies Co., Ltd. 2019. All rights reserved.
2021-06-01 16:45:03 +00:00
2020-09-08 02:21:39 +00:00
error()
{
echo "$1"
exit 1
}
PYTHON="python3"
TOOLS="tools"
flag=$(command -v $PYTHON | grep -c $PYTHON)
if [ "$flag" -eq 0 ]; then
error "Python3.7 or higher version required!"
fi
$PYTHON -c 'import sys; exit(1) if sys.version_info.major < 3 or sys.version_info.minor < 7 else exit(0)' || \
error "Python3.7 or higher version required!"
cd $(dirname "$0") || error "Failure to change direcory!"
$PYTHON -c "import pip" || error "Please install pip first!"
2020-09-08 02:21:39 +00:00
if [ ! -d $TOOLS ]; then
2020-09-08 02:21:39 +00:00
error "$TOOLS directory not exists"
fi
$PYTHON -m pip uninstall -y xdevice
$PYTHON -m pip uninstall -y xdevice-extension
$PYTHON -m pip uninstall -y xdevice-ohos
2020-09-08 02:21:39 +00:00
for f in "$TOOLS"/*.egg
do
if [ ! -e "$f" ]; then
error "Can not find xdevice package!"
fi
$PYTHON -m pip install --user "$f" || echo "Error occurs to install $f!"
2020-09-08 02:21:39 +00:00
done
2021-03-11 10:42:50 +00:00
for f in "$TOOLS"/*.tar.gz
do
if [ ! -e "$f" ]; then
error "Can not find xdevice package!"
fi
$PYTHON -m pip install --user "$f" || echo "Error occurs to install $f!"
2021-03-11 10:42:50 +00:00
done
2020-09-08 02:21:39 +00:00
$PYTHON -m xdevice "$@"