timed4 test fix. no stderr from python functions

Change-Id: I666db1ff4b4770c044f2de4c5dc7bef16366b0c3
(cherry picked from commit fb8de9c9768467e0a363f99d16f6952b4dd676a1)
This commit is contained in:
Mark Charney
2017-06-09 23:13:46 -04:00
parent f337fd5045
commit 7e2a108bd1

View File

@@ -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)