|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #!/bin/bash
- # Copyright 2019-2021 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)
- IGNORE_EXEC="--ignore=$CURRPATH/exec"
- PROJECT_PATH=$(cd ${CURRPATH}/../../..; pwd)
-
- 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"
- export GC_COLLECT_IN_CELL=1
-
- if [ $# -eq 1 ] && ([ "$1" == "stage1" ] || [ "$1" == "stage2" ] || [ "$1" == "stage3" ] || [ "$1" == "stage4" ]); then
- if [ $1 == "stage1" ]; then
- echo "run python dataset ut"
- pytest -v $CURRPATH/dataset
-
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- elif [ $1 == "stage2" ]; then
- echo "run python parallel"
- pytest -s $CURRPATH/parallel/*.py
-
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- elif [ $1 == "stage3" ]; then
- echo "run python ops, pynative_mode, pipeline, train ut"
- pytest -v $CURRPATH/ops $CURRPATH/pynative_mode
-
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- pytest -v $CURRPATH/pipeline $CURRPATH/train
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- elif [ $1 == "stage4" ]; then
- echo "run ut"
- pytest -v $CURRPATH/nn
-
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- pytest -v --ignore=$CURRPATH/dataset --ignore=$CURRPATH/parallel --ignore=$CURRPATH/ops --ignore=$CURRPATH/pynative_mode --ignore=$CURRPATH/pipeline --ignore=$CURRPATH/train --ignore=$CURRPATH/nn $IGNORE_EXEC $CURRPATH
-
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
- fi
- else
- echo "run all python ut"
- pytest $CURRPATH/dataset
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- pytest -v $CURRPATH/parallel/*.py
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- pytest -v $CURRPATH/ops $CURRPATH/pynative_mode
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- pytest -v $CURRPATH/pipeline $CURRPATH/train
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- pytest -v $CURRPATH/nn
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
-
- pytest -v --ignore=$CURRPATH/dataset --ignore=$CURRPATH/parallel --ignore=$CURRPATH/ops --ignore=$CURRPATH/pynative_mode --ignore=$CURRPATH/pipeline --ignore=$CURRPATH/train --ignore=$CURRPATH/nn $IGNORE_EXEC $CURRPATH
- RET=$?
- if [ ${RET} -ne 0 ]; then
- exit ${RET}
- fi
- fi
-
- RET=$?
- exit ${RET}
|