changeset 370:f86e79246602

Remove null stdio
author Windel Bouwman
date Fri, 21 Mar 2014 11:57:32 +0100
parents 5333318ee33d
children 9c95f93f5b7a
files test/testemulation.py
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/test/testemulation.py	Fri Mar 21 11:54:50 2014 +0100
+++ b/test/testemulation.py	Fri Mar 21 11:57:32 2014 +0100
@@ -36,9 +36,7 @@
         '-nographic', '-kernel', kernel, '-monitor',
         'unix:qemucontrol.sock',
         '-serial', 'unix:qemuserial.sock', '-S']
-    p = subprocess.Popen(args,
-        stdout=subprocess.DEVNULL,
-        stderr=subprocess.DEVNULL)
+    p = subprocess.Popen(args)
 
     # Give process some time to boot:
     qemu_serial, address_peer = qemu_serial_serve.accept()