diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2017-01-13 14:33:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-19 22:47:22 +0000 |
commit | de17891185a3b593d8cde50991082f6fd6c209f9 (patch) | |
tree | 907cb16d83808da6f08a96633994cb44db33398f | |
parent | e530a95c5a717d32ca8c87ec0f833b5c29c8e9a7 (diff) | |
download | poky-de17891185a3b593d8cde50991082f6fd6c209f9.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().
(From OE-Core rev: 66f66d1d763ff7bbaab9e8fcdf7fc882f2dfbb13)
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 1 |
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 @@ | |||
7 | 7 | ||
8 | import subprocess | 8 | import subprocess |
9 | import os | 9 | import os |
10 | import sys | ||
10 | import time | 11 | import time |
11 | import signal | 12 | import signal |
12 | import re | 13 | import re |