forked from mindspore-Ecosystem/mindspore
!15420 Add a opts check for build.sh
From: @zhangzhaoju Reviewed-by: @ginfung,@zh_qh,@hwhewei,@zh_qh Signed-off-by: @zh_qh,@zh_qh
This commit is contained in:
commit
f66ba14178
5
build.sh
5
build.sh
|
@ -340,6 +340,11 @@ checkopts()
|
|||
esac
|
||||
done
|
||||
|
||||
if [[ "X$RUN_TESTCASES" == "Xon" && "X$DEVICE" != "X" ]]; then
|
||||
echo "WARNING:Option -e can't be set while option -t on/ut is set, reset device to empty."
|
||||
DEVICE=""
|
||||
fi
|
||||
|
||||
# Parse device
|
||||
# Process build option
|
||||
if [[ "X$DEVICE" == "Xgpu" ]]; then
|
||||
|
|
Loading…
Reference in New Issue