aboutsummaryrefslogtreecommitdiff
path: root/tools/jsrun.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-11-19 18:13:28 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-11-19 18:19:48 -0800
commit4a54aa90277cebaf544f42cc9e0f2f4401e7ece4 (patch)
treede24cd32bd49283f29896caada165981f816bf8d /tools/jsrun.py
parentce39a7b5a4bb65ef12bd8d8c28fe6fc86b413bf1 (diff)
hackish emscript_fast toolchain integrations
Diffstat (limited to 'tools/jsrun.py')
-rw-r--r--tools/jsrun.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/jsrun.py b/tools/jsrun.py
index 7acfc978..f74a1492 100644
--- a/tools/jsrun.py
+++ b/tools/jsrun.py
@@ -3,7 +3,7 @@ from subprocess import Popen, PIPE, STDOUT
TRACK_PROCESS_SPAWNS = True if (os.getenv('EM_BUILD_VERBOSE') and int(os.getenv('EM_BUILD_VERBOSE')) >= 3) else False
-def timeout_run(proc, timeout, note='unnamed process', full_output=False):
+def timeout_run(proc, timeout=None, note='unnamed process', full_output=False):
start = time.time()
if timeout is not None:
while time.time() - start < timeout and proc.poll() is None: