未验证 提交 7b72757e 编写于 作者: sangshuduo's avatar sangshuduo 提交者: GitHub

test: fix tools/taosdumpTest3.py (#14848)

上级 9762f4cd
...@@ -60,6 +60,13 @@ class TDTestCase: ...@@ -60,6 +60,13 @@ class TDTestCase:
else: else:
print("directory exists") print("directory exists")
for i in range(1, 9):
if not os.path.exists("./taosdumptest/tmp%d" % i):
os.makedirs("./taosdumptest/tmp%d" % i)
else:
os.system("rm -rf ./taosdumptest/tmp%d" % i)
os.makedirs("./taosdumptest/tmp%d" % i)
if not os.path.exists("./taosdumptest/tmp2"): if not os.path.exists("./taosdumptest/tmp2"):
os.makedirs("./taosdumptest/tmp2") os.makedirs("./taosdumptest/tmp2")
tdSql.execute("drop database if exists db") tdSql.execute("drop database if exists db")
......
...@@ -57,6 +57,9 @@ class TDTestCase: ...@@ -57,6 +57,9 @@ class TDTestCase:
def run(self): def run(self):
if not os.path.exists("./taosdumptest"): if not os.path.exists("./taosdumptest"):
os.makedirs("./taosdumptest") os.makedirs("./taosdumptest")
else:
print("directory exists")
for i in range(1, 9): for i in range(1, 9):
if not os.path.exists("./taosdumptest/tmp%d" % i): if not os.path.exists("./taosdumptest/tmp%d" % i):
os.makedirs("./taosdumptest/tmp%d" % i) os.makedirs("./taosdumptest/tmp%d" % i)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册