diff options
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/utils/qemutinyrunner.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/utils/testexport.py | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 784cf964f5..4bede3421c 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
@@ -354,7 +354,7 @@ class QemuRunner: | |||
354 | if p not in parents: | 354 | if p not in parents: |
355 | parents.append(p) | 355 | parents.append(p) |
356 | newparents = next | 356 | newparents = next |
357 | #print "Children matching %s:" % str(parents) | 357 | #print("Children matching %s:" % str(parents)) |
358 | for p in parents: | 358 | for p in parents: |
359 | # Need to be careful here since runqemu-internal runs "ldd qemu-system-xxxx" | 359 | # Need to be careful here since runqemu-internal runs "ldd qemu-system-xxxx" |
360 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" | 360 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" |
diff --git a/meta/lib/oeqa/utils/qemutinyrunner.py b/meta/lib/oeqa/utils/qemutinyrunner.py index 4f95101f30..e3d8c669e0 100644 --- a/meta/lib/oeqa/utils/qemutinyrunner.py +++ b/meta/lib/oeqa/utils/qemutinyrunner.py | |||
@@ -160,7 +160,7 @@ class QemuTinyRunner(QemuRunner): | |||
160 | if p not in parents: | 160 | if p not in parents: |
161 | parents.append(p) | 161 | parents.append(p) |
162 | newparents = next | 162 | newparents = next |
163 | #print "Children matching %s:" % str(parents) | 163 | #print("Children matching %s:" % str(parents)) |
164 | for p in parents: | 164 | for p in parents: |
165 | # Need to be careful here since runqemu-internal runs "ldd qemu-system-xxxx" | 165 | # Need to be careful here since runqemu-internal runs "ldd qemu-system-xxxx" |
166 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" | 166 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" |
diff --git a/meta/lib/oeqa/utils/testexport.py b/meta/lib/oeqa/utils/testexport.py index 243463bc15..4fbf4bdcb3 100644 --- a/meta/lib/oeqa/utils/testexport.py +++ b/meta/lib/oeqa/utils/testexport.py | |||
@@ -17,13 +17,13 @@ except ImportError: | |||
17 | pass | 17 | pass |
18 | def plain(self, msg): | 18 | def plain(self, msg): |
19 | if msg: | 19 | if msg: |
20 | print msg | 20 | print(msg) |
21 | def warn(self, msg): | 21 | def warn(self, msg): |
22 | if msg: | 22 | if msg: |
23 | print "WARNING: " + msg | 23 | print("WARNING: " + msg) |
24 | def fatal(self, msg): | 24 | def fatal(self, msg): |
25 | if msg: | 25 | if msg: |
26 | print "FATAL:" + msg | 26 | print("FATAL:" + msg) |
27 | sys.exit(1) | 27 | sys.exit(1) |
28 | bb = my_log() | 28 | bb = my_log() |
29 | 29 | ||