convert all users of os system to system
Move all users of os.system over to the internal system
call which handles failed commands as an exception.
Signed-off-by: Andy Whitcroft <apw@shadowen.org>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@24 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/bin/tests/kernbench.py b/bin/tests/kernbench.py
index a7707b2..867d622 100755
--- a/bin/tests/kernbench.py
+++ b/bin/tests/kernbench.py
@@ -27,4 +27,4 @@
testkernel.build_timed(threads, '../log/time.%d' % i)
os.chdir(top_dir + '/log')
- os.system("grep elapsed time.* > time")
+ system("grep elapsed time.* > time")