aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariano Lopez <mariano.lopez@linux.intel.com>2017-01-13 14:33:54 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-19 22:45:46 +0000
commit66f66d1d763ff7bbaab9e8fcdf7fc882f2dfbb13 (patch)
treea76242917938ddffdbb635f2a27b8f40a9e91647
parent97c07a55815c2fc3915705317b6f30d212fa1d45 (diff)
downloadopenembedded-core-contrib-66f66d1d763ff7bbaab9e8fcdf7fc882f2dfbb13.tar.gz
oeqa/utils/qemurunner.py: Add missing sys module
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>
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index 8f1b5b9805..6927456b29 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -7,6 +7,7 @@
import subprocess
import os
+import sys
import time
import signal
import re