mirror of https://github.com/ArduPilot/ardupilot
Tools: remove old bufsize parameters
This commit is contained in:
parent
013d7541b7
commit
237bcf7b7a
|
@ -115,7 +115,6 @@ class Bisect(object):
|
|||
'''run cmd_list, spewing and setting output in self'''
|
||||
self.progress("Running (%s)" % " ".join(cmd_list))
|
||||
p = subprocess.Popen(cmd_list,
|
||||
bufsize=1,
|
||||
stdin=None,
|
||||
close_fds=True,
|
||||
stdout=subprocess.PIPE,
|
||||
|
|
|
@ -38,7 +38,6 @@ class CheckAutoTestSpeedup(object):
|
|||
'''run cmd_list, spewing and setting output in self'''
|
||||
self.progress("Running (%s)" % " ".join(cmd_list))
|
||||
p = subprocess.Popen(cmd_list,
|
||||
bufsize=1,
|
||||
stdin=None,
|
||||
close_fds=True,
|
||||
stdout=subprocess.PIPE,
|
||||
|
|
|
@ -113,7 +113,7 @@ class build_binaries(object):
|
|||
def run_program(self, prefix, cmd_list, show_output=True, env=None, force_success=False):
|
||||
if show_output:
|
||||
self.progress("Running (%s)" % " ".join(cmd_list))
|
||||
p = subprocess.Popen(cmd_list, bufsize=1, stdin=None,
|
||||
p = subprocess.Popen(cmd_list, stdin=None,
|
||||
stdout=subprocess.PIPE, close_fds=True,
|
||||
stderr=subprocess.STDOUT, env=env)
|
||||
output = ""
|
||||
|
|
Loading…
Reference in New Issue