def backtrace_to_html(bt_filename, output): with open(output, "w") as afile: res = process.execute([runtime.python_path(), runtime.source_path("devtools/coredump_filter/core_proc.py"), bt_filename], check_exit_code=False, check_sanitizer=False, stdout=afile) if res.exit_code != 0: with open(output, "a") as afile: afile.write("\n") afile.write(res.std_err)
def canonical_py_execute( script_path, args=None, check_exit_code=True, shell=False, timeout=None, cwd=None, env=None, stdin=None, stderr=None, creationflags=0, file_name=None, save_locally=False, close_fds=False, diff_tool=None, diff_file_name=None, ): """ Shortcut to execute a python script and canonize its stdout :param script_path: path to the script arcadia relative :param args: script arguments :param check_exit_code: will raise ExecutionError if the command exits with non zero code :param shell: use shell to run the command :param timeout: execution timeout :param cwd: working directory :param env: command environment :param stdin: command stdin :param stderr: command stderr :param creationflags: command creation flags :param file_name: output file name. if not specified program name will be used :param diff_tool: path to custome diff tool :param diff_file_name: custom diff file name to create when diff is found :return: object that can be canonized """ command = [runtime.source_path(script_path)] + _prepare_args(args) if shell: command = " ".join(command) execute_args = locals() del execute_args["script_path"] del execute_args["args"] del execute_args["file_name"] del execute_args["save_locally"] del execute_args["diff_tool"] del execute_args["diff_file_name"] return _canonical_execute(process.py_execute, execute_args, file_name, save_locally, diff_tool, diff_file_name)
def canonical_py_execute( script_path, args=None, check_exit_code=True, shell=False, timeout=None, cwd=None, env=None, stdin=None, stderr=None, creationflags=0, file_name=None, save_locally=False, close_fds=False, diff_tool=None, diff_file_name=None, diff_tool_timeout=None, ): """ Shortcut to execute a python script and canonize its stdout :param script_path: path to the script arcadia relative :param args: script arguments :param check_exit_code: will raise ExecutionError if the command exits with non zero code :param shell: use shell to run the command :param timeout: execution timeout :param cwd: working directory :param env: command environment :param stdin: command stdin :param stderr: command stderr :param creationflags: command creation flags :param file_name: output file name. if not specified program name will be used :param diff_tool: path to custome diff tool :param diff_file_name: custom diff file name to create when diff is found :param diff_tool_timeout: timeout for running diff tool :return: object that can be canonized """ command = [runtime.source_path(script_path)] + _prepare_args(args) if shell: command = " ".join(command) execute_args = locals() del execute_args["script_path"] del execute_args["args"] del execute_args["file_name"] del execute_args["save_locally"] del execute_args["diff_tool"] del execute_args["diff_file_name"] del execute_args["diff_tool_timeout"] return _canonical_execute(process.py_execute, execute_args, file_name, save_locally, diff_tool, diff_file_name, diff_tool_timeout)