From 7e2a108bd198234f5905e24788ce499fd0659cb7 Mon Sep 17 00:00:00 2001 From: Mark Charney Date: Fri, 9 Jun 2017 23:13:46 -0400 Subject: [PATCH] timed4 test fix. no stderr from python functions Change-Id: I666db1ff4b4770c044f2de4c5dc7bef16366b0c3 (cherry picked from commit fb8de9c9768467e0a363f99d16f6952b4dd676a1) --- tests/timed4.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/timed4.py b/tests/timed4.py index fe5575b..ab08cc8 100755 --- a/tests/timed4.py +++ b/tests/timed4.py @@ -40,9 +40,9 @@ def some_python_fn(a,b): for j in range(0,n): for k in range(0,n): x += i*j*k - return (0, [str(x)], []) + return (0, [str(x)]) -c3 = mbuild.command_t(some_python_fn, seconds=2, show_output=False) +c3 = mbuild.command_t(some_python_fn, seconds=2, show_output=True) work_queue.add(c3)