-
Notifications
You must be signed in to change notification settings - Fork 104
/
test.sh
executable file
·50 lines (47 loc) · 1.1 KB
/
test.sh
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
42
43
44
45
46
47
48
49
50
#!/bin/bash
# Test all operators cases, used for CI test.
# If you want to run specify operators, refer to README.md.
# You need to run build.sh, before running this script.
set -e
source env.sh
usage () {
echo "USAGE: test.sh <options>"
echo
echo "OPTIONS:"
echo " -h, --help Print usage"
echo " --cases_dir=* [Optional]Test cases for test"
echo
}
if [ $# == 0 ]; then echo "Have no options, use -h or --help"; exit -1; fi
cmdline_args=$(getopt -o h --long cases_dir: -n 'test.sh' -- "$@")
eval set -- "$cmdline_args"
if [ $# != 0 ]; then
while true; do
case "$1" in
--cases_dir)
shift
CASES_DIR=$1
shift
;;
-h | --help)
usage
exit 0
;;
--)
shift
break
;;
*)
echo "-- Unknown options ${1}, use -h or --help"
usage
exit -1
;;
esac
done
fi
# Test all operators cases.
cd build/test/
./mluop_gtest
if [[ -n "${CASES_DIR}" && -a "${CASES_DIR}" ]]; then
./mluop_gtest --cases_dir="${CASES_DIR}"
fi