HomeSort by relevance Sort by last modified time
    Searched refs:adb_output (Results 1 - 3 of 3) sorted by null

  /frameworks/base/tests/DumpRenderTree/assets/
run_reliability_tests.py 40 adb_output = subprocess.Popen(shell_cmd_str,
43 return adb_output.strip() == "#DONE"
157 (adb_output, adb_error) = proc.communicate()
160 logging.error(adb_output)
192 adb_output = subprocess.Popen(test_cmd, shell=True,
215 adb_output = subprocess.Popen(test_cmd, shell=True, stdout=subprocess.PIPE,
218 if (adb_output.find("INSTRUMENTATION_FAILED") != -1 or
219 adb_output.find("Process crashed.") != -1):
220 logging.error("Error happened : " + adb_output)
223 logging.info(adb_output)
    [all...]
run_layout_tests.py 62 adb_output = subprocess.Popen(shell_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
63 return adb_output.strip() == "#DONE"
167 adb_output = subprocess.Popen(generate_test_list_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
169 if adb_output.find('Process crashed') != -1:
170 logging.info("Aborting because cannot generate test list.\n" + adb_output)
205 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
208 logging.error("DumpRenderTree crashed, output:\n" + adb_output)
230 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
232 if adb_output.find('INSTRUMENTATION_FAILED') != -1:
233 logging.error("Error happened : " + adb_output)
    [all...]
run_page_cycler.py 69 (adb_output, adb_error) = subprocess.Popen(run_load_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
71 for line in adb_output.splitlines():
82 logging.error("Error happened : " + adb_output)
85 logging.info(adb_output);
99 (adb_output, err) = subprocess.Popen(
105 logging.error(adb_output)

Completed in 1688 milliseconds