mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* restore .gitmodules
* Revert "[TD-13408]<test>: move tests directory out"
This reverts commit 7db7bd9337.
* revert to make tests back
* immigrate file change in stand-alone repo to TDengine
* remove tests repository checkout
Co-authored-by: tangfangzhi <fztang@taosdata.com>
22 lines
463 B
Bash
Executable file
22 lines
463 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "==== start Go connector test cases test ===="
|
|
|
|
severIp=$1
|
|
serverPort=$2
|
|
|
|
if [ ! -n "$severIp" ]; then
|
|
severIp=127.0.0.1
|
|
fi
|
|
|
|
if [ ! -n "$serverPort" ]; then
|
|
serverPort=6030
|
|
fi
|
|
|
|
go env -w GO111MODULE=on
|
|
go env -w GOPROXY=https://goproxy.cn,direct
|
|
|
|
bash ./case001/case001.sh $severIp $serverPort
|
|
bash ./case002/case002.sh $severIp $serverPort
|
|
#bash ./case003/case003.sh $severIp $serverPort
|
|
bash ./nanosupport/nanoCase.sh $severIp $serverPort
|