Lines Matching refs:output
22 OUTPUT_PATH = "testModule/output"
32 output = f.read()
33 return checkFunction(output)
46 output = f.read()
47 return checkFunction(output)
90 output = subprocess.check_output(f"hdc shell \"{command}\"", shell=True, text=True, encoding="utf-8")
91 assert checkFunction(output)
99 output = subprocess.check_output(f"hdc shell \"{command} --zip\"", shell=True, text=True, encoding="utf-8")
100 zipSourceFile = re.search("The result is:(.+)", output).group(1).strip()
106 output = subprocess.check_output("hdc shell param get const.product.software.version", shell=True, text=True, encoding="utf-8").strip()
107 return "log" in output
110 output = subprocess.check_output("hdc shell param get const.debuggable", shell=True, text=True, encoding="utf-8").strip()
111 return output == "1"
114 output = subprocess.check_output("hdc shell param get const.product.software.version", shell=True, text=True, encoding="utf-8").strip()
115 return "OpenHarmony" in output
127 output = process.stdout.readline()
128 if targetLog in output: