deadlock_warning = "Using PIPE for %s without wait=False would deadlock"
def __init__(self, client, args, check_status=True, hostname=None,
- label=None, timeout=None, wait=True, logger=None, cwd=None, scan_tests_errors=[]):
+ label=None, timeout=None, wait=True, logger=None, cwd=None, scan_tests_errors=None):
"""
Create the object. Does not initiate command execution.
return True
return False
- def scan(self, test_names=[]):
+ def scan(self, test_names=None):
logfile = self.__logfile__
if not logfile or not test_names:
return None, None
quiet=False,
timeout=None,
cwd=None,
- scan_tests_errors=[],
+ scan_tests_errors=None,
# omit_sudo is used by vstart_runner.py
omit_sudo=False
):