2020-06-02 22:48:55 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
ROOT=$(unset CDPATH && cd $(dirname "${BASH_SOURCE[0]}")/.. && pwd)
|
|
|
|
|
|
|
|
which ginkgo &> /dev/null
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "ginkgo not found, try to install..."
|
2021-08-17 15:26:43 +08:00
|
|
|
go install github.com/onsi/ginkgo/ginkgo@latest
|
2020-06-02 22:48:55 +08:00
|
|
|
fi
|
|
|
|
|
2020-09-07 14:57:23 +08:00
|
|
|
debug=false
|
|
|
|
if [ x${DEBUG} == x"true" ]; then
|
|
|
|
debug=true
|
|
|
|
fi
|
2021-06-18 16:48:36 +08:00
|
|
|
logLevel=debug
|
|
|
|
if [ x${LOG_LEVEL} != x"" ]; then
|
|
|
|
logLevel=${LOG_LEVEL}
|
|
|
|
fi
|
|
|
|
|
2021-08-02 13:07:28 +08:00
|
|
|
ginkgo -nodes=8 -slowSpecThreshold=20 ${ROOT}/test/e2e -- -frpc-path=${ROOT}/bin/frpc -frps-path=${ROOT}/bin/frps -log-level=${logLevel} -debug=${debug}
|