diff options
| author | Adrian Freihofer <adrian.freihofer@siemens.com> | 2019-06-08 09:59:45 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-18 11:28:58 +0100 |
| commit | a4fbf375420fc768346691c64d33160dfc7bcf04 (patch) | |
| tree | 36ba9a119ba0f7f05870e5a974d8dc38eee720df | |
| parent | 51cd0fdd08c87d71cb9dd09b89f38c3bb1aa254e (diff) | |
| download | poky-a4fbf375420fc768346691c64d33160dfc7bcf04.tar.gz | |
qemurunner: fix undefined variable
While hacking on this I got an Exception. It's better to define
variables also in python.
Signe:-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
(From OE-Core rev: 7c604a62356538de660835bd2d3ba26beccd810d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.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 6d2860c106..c16227fc38 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
| @@ -60,6 +60,7 @@ class QemuRunner: | |||
| 60 | self.runqemutime = 120 | 60 | self.runqemutime = 120 |
| 61 | self.qemu_pidfile = 'pidfile_'+str(os.getpid()) | 61 | self.qemu_pidfile = 'pidfile_'+str(os.getpid()) |
| 62 | self.host_dumper = HostDumper(dump_host_cmds, dump_dir) | 62 | self.host_dumper = HostDumper(dump_host_cmds, dump_dir) |
| 63 | self.monitorpipe = None | ||
| 63 | 64 | ||
| 64 | self.logger = logger | 65 | self.logger = logger |
| 65 | 66 | ||
