X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=system%2Futils.py;h=55a990cc5977df63f4c575ca66c9e12d59f3eba4;hb=958ab9043c17028a1e1c6f7014acd299f8564577;hp=51205bd8cc0128983d698d90982c06273112a4a6;hpb=47327e9d3a9ee1d09f0dd6689ec89f6e87a27b32;p=tests.git diff --git a/system/utils.py b/system/utils.py index 51205bd..55a990c 100644 --- a/system/utils.py +++ b/system/utils.py @@ -27,8 +27,9 @@ def pprint(message, spec, depth=2): PrettyPrinter(indent=8, depth=depth).pprint(spec) - -def system(command, background=False, silent=False, dry_run=None): +# set a default timeout to 15 minutes - this should be plenty even for installations +# call with timeout=None if the intention really is to wait until full completion +def system(command, background=False, silent=False, dry_run=None, timeout=15*60): dry_run = dry_run if dry_run is not None else getattr(options, 'dry_run', False) if dry_run: print('dry_run:', command) @@ -50,7 +51,11 @@ def system(command, background=False, silent=False, dry_run=None): sys.stdout.flush() if not silent: command = "set -x; " + command - return os.system(command) + try: + return subprocess.call(command, shell=True, timeout=timeout) + except subprocess.TimeoutExpired as e: + header("TIMEOUT when running command {}- {}".format(command, e)) + return -1 ### WARNING : this ALWAYS does its job, even in dry_run mode def output_of (command):