]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/utils/qemurunner.py: Add missing sys module
authorMariano Lopez <mariano.lopez@linux.intel.com>
Fri, 13 Jan 2017 14:33:54 +0000 (14:33 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 19 Jan 2017 22:45:46 +0000 (22:45 +0000)
This adds the missing sys module used by the child process
to exit. It seems the exception was cached in testimage and
selftest. It seems nobody noticed this because the module
is only used for sys.exit().

Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/utils/qemurunner.py

index 8f1b5b9805cc94e81261a8623371212b03b5d34f..6927456b2924a3c6e7a4bc8321e74c7124c7bfb1 100644 (file)
@@ -7,6 +7,7 @@
 
 import subprocess
 import os
+import sys
 import time
 import signal
 import re