Merge pull request #1563 from taosdata/add-testcase-execution-in-ci
Add testcase execution in ci
This commit is contained in:
commit
c65f4afbb2
|
@ -6,8 +6,8 @@ if [ -n "$PID" ]; then
|
||||||
sudo systemctl stop taosd
|
sudo systemctl stop taosd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
PID=`ps -ef|grep taosd | grep -v grep | awk '{print $2}'`
|
PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'`
|
||||||
if [ -n "$PID" ]; then
|
if [ -n "$PID" ]; then
|
||||||
echo sudo kill -9 $PID
|
echo sudo kill -9 $PID
|
||||||
sudo kill -9 $PID
|
sudo pkill taosd
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue