diff options
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r-- | meta/lib/oeqa/runtime/connman.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/connman.py b/meta/lib/oeqa/runtime/connman.py index bd9dba3bd0..003fefe2ce 100644 --- a/meta/lib/oeqa/runtime/connman.py +++ b/meta/lib/oeqa/runtime/connman.py | |||
@@ -27,5 +27,5 @@ class ConnmanTest(oeRuntimeTest): | |||
27 | def test_connmand_running(self): | 27 | def test_connmand_running(self): |
28 | (status, output) = self.target.run(oeRuntimeTest.pscmd + ' | grep [c]onnmand') | 28 | (status, output) = self.target.run(oeRuntimeTest.pscmd + ' | grep [c]onnmand') |
29 | if status != 0: | 29 | if status != 0: |
30 | print self.service_status("connman") | 30 | print(self.service_status("connman")) |
31 | self.fail("No connmand process running") | 31 | self.fail("No connmand process running") |
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index dec9ebe874..a93660131d 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -262,7 +262,7 @@ class ParseLogsTest(oeRuntimeTest): | |||
262 | self.write_dmesg() | 262 | self.write_dmesg() |
263 | log_list = self.get_local_log_list(self.log_locations) | 263 | log_list = self.get_local_log_list(self.log_locations) |
264 | result = self.parse_logs(self.errors, self.ignore_errors, log_list) | 264 | result = self.parse_logs(self.errors, self.ignore_errors, log_list) |
265 | print self.getHardwareInfo() | 265 | print(self.getHardwareInfo()) |
266 | errcount = 0 | 266 | errcount = 0 |
267 | for log in result: | 267 | for log in result: |
268 | self.msg += "Log: "+log+"\n" | 268 | self.msg += "Log: "+log+"\n" |