diff options
Diffstat (limited to 'tests/DumpRenderTree/assets/run_page_cycler.py')
-rwxr-xr-x | tests/DumpRenderTree/assets/run_page_cycler.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/DumpRenderTree/assets/run_page_cycler.py b/tests/DumpRenderTree/assets/run_page_cycler.py index 7eb18f9..f995086 100755 --- a/tests/DumpRenderTree/assets/run_page_cycler.py +++ b/tests/DumpRenderTree/assets/run_page_cycler.py @@ -85,8 +85,6 @@ def main(options, args): run_load_test_cmd += run_load_test_cmd_postfix - print run_load_test_cmd - (adb_output, adb_error) = subprocess.Popen(run_load_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() fail_flag = False for line in adb_output.splitlines(): @@ -115,7 +113,7 @@ def main(options, args): logging.error("Cannot create results dir: " + results_dir) sys.exit(1) - result_file = "/sdcard/0/load_test_result.txt" + result_file = "/sdcard/load_test_result.txt" shell_cmd_str = adb_cmd + " pull " + result_file + " " + results_dir (adb_output, err) = subprocess.Popen( shell_cmd_str, shell=True, |