提交 98cbbc01 编写于 作者: wafwerar's avatar wafwerar

test: add auto exit case

上级 fd9bb8db
......@@ -13,6 +13,7 @@
# pip install src/connector/python/
# -*- coding: utf-8 -*-
from ast import If
import sys
import getopt
import subprocess
......@@ -33,8 +34,15 @@ import taos
def checkRunTimeError():
import win32gui
timeCount = 0
while 1:
time.sleep(1)
timeCount = timeCount + 1
if (timeCount>900):
os.system("TASKKILL /F /IM taosd.exe")
os.system("TASKKILL /F /IM taos.exe")
os.system("TASKKILL /F /IM tmq_sim.exe")
quit(0)
hwnd = win32gui.FindWindow(None, "Microsoft Visual C++ Runtime Library")
if hwnd:
os.system("TASKKILL /F /IM taosd.exe")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册