Update test_passwd.py to add some log for debug
This commit is contained in:
parent
dcb63d054f
commit
ffe1776f3e
|
@ -23,11 +23,12 @@ class TDTestCase(TBase):
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
apiPath = self.apiPath()
|
apiPath = self.apiPath()
|
||||||
|
tdLog.info(f"api path: {apiPath}")
|
||||||
if apiPath:
|
if apiPath:
|
||||||
p = subprocess.Popen(f"cd {apiPath} && make", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
p = subprocess.Popen(f"cd {apiPath} && make", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
out, err = p.communicate()
|
out, err = p.communicate()
|
||||||
if 0 != p.returncode:
|
if 0 != p.returncode:
|
||||||
tdLog.exit("Test script passwdTest.c make failed")
|
tdLog.exit(f"Test script passwdTest.c make failed with error: {err}")
|
||||||
test_file_cmd = os.sep.join([apiPath, "passwdTest localhost"])
|
test_file_cmd = os.sep.join([apiPath, "passwdTest localhost"])
|
||||||
else:
|
else:
|
||||||
tdLog.exit("passwdTest.c not found")
|
tdLog.exit("passwdTest.c not found")
|
||||||
|
|
Loading…
Reference in New Issue