diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-15 10:23:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-16 08:12:15 +0100 |
commit | 0c89a8a276b67a9292ee3100003c789126bd9ea9 (patch) | |
tree | 415be1c4b61f1d4447d55fb7cec61cee40125b5e /meta/lib | |
parent | 95b0270e82b5d05d651c05e9c86681978013b346 (diff) | |
download | openembedded-core-0c89a8a276b67a9292ee3100003c789126bd9ea9.tar.gz openembedded-core-0c89a8a276b67a9292ee3100003c789126bd9ea9.tar.bz2 openembedded-core-0c89a8a276b67a9292ee3100003c789126bd9ea9.zip |
oeqa: Print function python3 fixes
Use print functions for comptibility with python3.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/runtime/connman.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 2 | ||||
-rwxr-xr-x | meta/lib/oeqa/selftest/esdk_prepare.py | 8 | ||||
-rw-r--r-- | meta/lib/oeqa/selftest/sstatetests.py | 10 |
4 files changed, 11 insertions, 11 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): def test_connmand_running(self): (status, output) = self.target.run(oeRuntimeTest.pscmd + ' | grep [c]onnmand') if status != 0: - print self.service_status("connman") + print(self.service_status("connman")) 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): self.write_dmesg() log_list = self.get_local_log_list(self.log_locations) result = self.parse_logs(self.errors, self.ignore_errors, log_list) - print self.getHardwareInfo() + print(self.getHardwareInfo()) errcount = 0 for log in result: self.msg += "Log: "+log+"\n" diff --git a/meta/lib/oeqa/selftest/esdk_prepare.py b/meta/lib/oeqa/selftest/esdk_prepare.py index 1b36a0d682..406089787d 100755 --- a/meta/lib/oeqa/selftest/esdk_prepare.py +++ b/meta/lib/oeqa/selftest/esdk_prepare.py @@ -28,8 +28,8 @@ class ExtSdkPrepareTest(unittest.TestCase): # load module under test self.test_mod = imp.load_source("", module_dest_path) except: - print "error: unable to copy or load %s [src: %s, dst: %s]" % \ - (module_file_name, module_path, module_dest_path) + print("error: unable to copy or load %s [src: %s, dst: %s]" % \ + (module_file_name, module_path, module_dest_path)) sys.exit(1) def test_prepare_unexpected(self): @@ -66,8 +66,8 @@ if __name__ == '__main__': unittest.TextTestRunner().run(suite) else: progname = os.path.basename(sys.argv[0]) - print "%s: missing directory path" % progname - print "usage: %s /path/to/directory-of(ext-sdk-prepare.py)" % progname + print("%s: missing directory path" % progname) + print("usage: %s /path/to/directory-of(ext-sdk-prepare.py)" % progname) sys.exit(1) else: # running under oe-selftest diff --git a/meta/lib/oeqa/selftest/sstatetests.py b/meta/lib/oeqa/selftest/sstatetests.py index ad591469d3..a1e5d33580 100644 --- a/meta/lib/oeqa/selftest/sstatetests.py +++ b/meta/lib/oeqa/selftest/sstatetests.py @@ -454,14 +454,14 @@ http_proxy = "http://example.com/" for k in files1.viewkeys() | files2.viewkeys(): if k in files1 and k in files2: - print "%s differs:" % k - print subprocess.check_output(("bitbake-diffsigs", + print("%s differs:" % k) + print(subprocess.check_output(("bitbake-diffsigs", topdir + "/tmp-sstatesamehash/stamps/" + k + "." + files1[k], - topdir + "/tmp-sstatesamehash2/stamps/" + k + "." + files2[k])) + topdir + "/tmp-sstatesamehash2/stamps/" + k + "." + files2[k]))) elif k in files1 and k not in files2: - print "%s in files1" % k + print("%s in files1" % k) elif k not in files1 and k in files2: - print "%s in files2" % k + print("%s in files2" % k) else: assert "shouldn't reach here" self.fail("sstate hashes not identical.") |