diff --git a/tests/army/user/test_passwd.py b/tests/army/user/test_passwd.py index 08445b4523..c205273973 100644 --- a/tests/army/user/test_passwd.py +++ b/tests/army/user/test_passwd.py @@ -25,6 +25,9 @@ class TDTestCase(TBase): def run(self): apiPath = self.apiPath() tdLog.info(f"api path: {apiPath}") + p = subprocess.Popen(f"ls {apiPath}", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + out, err = p.communicate() + tdLog.info(f"test files: {out}") if apiPath: test_file_cmd = os.sep.join([apiPath, "passwdTest localhost"]) try: