From e48b6ca7f49cf4c524f83acf3246242ac4389202 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Thu, 1 Mar 2018 03:19:27 +0545 Subject: [PATCH] test.sh: make it work on OS X out of the box --- test.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/test.sh b/test.sh index a61a6186..b8c1cbef 100755 --- a/test.sh +++ b/test.sh @@ -1,4 +1,31 @@ #!/bin/bash + +timeout() +{ + python -c ' +import subprocess +import sys +import time + +deadline = time.time() + float(sys.argv[1]) +proc = subprocess.Popen(sys.argv[2:]) +while time.time() < deadline and proc.poll() is None: + time.sleep(1.0) + +if proc.poll() is not None: + if proc.returncode: + print + print >> sys.stderr, "Command failed:", sys.argv[2:] + print + sys.exit(proc.returncode) +proc.terminate() +print +print >> sys.stderr, "Timeout! Command was:", sys.argv[2:] +print +sys.exit(1) + ' "$@" +} + timeout 05.0 python tests/call_function_test.py timeout 05.0 python tests/channel_test.py timeout 05.0 python tests/first_stage_test.py