runtest.sh 2.1 KB
Newer Older
Z
zhunaipan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#!/bin/bash
# Copyright 2019 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================

CURRPATH=$(cd $(dirname $0); pwd)
cd ${CURRPATH}
PROJECT_PATH=${CURRPATH}/../../..
if [ $BUILD_PATH ];then
	echo "BUILD_PATH = $BUILD_PATH"
else
    BUILD_PATH=${PROJECT_PATH}/build
	echo "BUILD_PATH = $BUILD_PATH"
fi

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${BUILD_PATH}/third_party/gtest/lib
export PYTHONPATH=$PYTHONPATH:${PROJECT_PATH}:${PROJECT_PATH}/tests/ut/cpp/python_input:${PROJECT_PATH}/tests/ut/python
echo "export PYTHONPATH=$PYTHONPATH"

IGNORE_EXEC=""
if [ "x${ENABLE_GE}" == "xON" -o "x${ENABLE_GE}" == "xOn" -o "x${ENABLE_GE}" == "xon" -o \
     "x${ENABLE_GE}" == "xTrue" -o "x${ENABLE_GE}" == "xtrue" ]; then
    if [ $# -gt 0 ]; then
        IGNORE_EXEC="--ignore=$1/exec"
    else
        IGNORE_EXEC="--ignore=$CURRPATH/exec"
    fi
fi

if [ $# -gt 0 ]; then
42
    pytest -s --ignore=$1/pynative_mode --ignore=$1/parallel  --ignore=$1/train  $IGNORE_EXEC $1
Z
zhunaipan 已提交
43
else
44
    pytest --ignore=$CURRPATH/pynative_mode --ignore=$CURRPATH/parallel --ignore=$CURRPATH/train $IGNORE_EXEC $CURRPATH
Z
zhunaipan 已提交
45 46 47 48 49 50 51 52 53 54 55
fi

RET=$?
if [ "x${IGNORE_EXEC}" != "x" ]; then
    exit ${RET}
fi

if [ ${RET} -ne 0 ]; then
    exit ${RET}
fi

高东海's avatar
高东海 已提交
56 57 58 59 60 61 62 63 64 65 66 67
if [ $# -gt 0 ]; then
    pytest -n 4 --dist=loadfile -v $1/parallel $1/train
else
    pytest -n 4 --dist=loadfile -v $CURRPATH/parallel $CURRPATH/train
fi

RET=$?

if [ ${RET} -ne 0 ]; then
    exit ${RET}
fi

Z
zhunaipan 已提交
68 69 70 71 72 73 74 75 76 77
if [ $# -gt 0 ]; then
    pytest -s $1/pynative_mode
else
    pytest $CURRPATH/pynative_mode
fi

RET=$?
if [ ${RET} -ne 0 ]; then
    exit ${RET}
fi