mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
21 lines
537 B
Bash
Executable File
21 lines
537 B
Bash
Executable File
#!/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..."
|
|
go install github.com/onsi/ginkgo/ginkgo@latest
|
|
fi
|
|
|
|
debug=false
|
|
if [ x${DEBUG} == x"true" ]; then
|
|
debug=true
|
|
fi
|
|
logLevel=debug
|
|
if [ x${LOG_LEVEL} != x"" ]; then
|
|
logLevel=${LOG_LEVEL}
|
|
fi
|
|
|
|
ginkgo -nodes=8 -slowSpecThreshold=20 ${ROOT}/test/e2e -- -frpc-path=${ROOT}/bin/frpc -frps-path=${ROOT}/bin/frps -log-level=${logLevel} -debug=${debug}
|