summaryrefslogtreecommitdiffstats
path: root/scripts/test-remote-image
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-05-30 18:14:46 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-01 12:47:10 +0100
commit2e388048b61f6029bae1913cbb546ac40b9cfe51 (patch)
tree8fa0fc951caab1430636fca971c27a7e7beb45ce /scripts/test-remote-image
parent79be110c1fdfd0affe6a310b96e7107c4549d23c (diff)
downloadpoky-2e388048b61f6029bae1913cbb546ac40b9cfe51.tar.gz
scripts: python3: Use print function
Used print function instead of print statement to make the code work in python 3. (From OE-Core rev: 80fecc44761fa38ccf2e4dc6897b9f1f0c9c1ed0) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/test-remote-image')
-rwxr-xr-xscripts/test-remote-image2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test-remote-image b/scripts/test-remote-image
index 9c5b0158d5..7a00db92c0 100755
--- a/scripts/test-remote-image
+++ b/scripts/test-remote-image
@@ -289,7 +289,7 @@ class HwAuto():
289 result = bitbake("%s -c testimage" % image_type, ignore_status=True, postconfig=postconfig) 289 result = bitbake("%s -c testimage" % image_type, ignore_status=True, postconfig=postconfig)
290 testimage_results = ftools.read_file(os.path.join(get_bb_var("T", image_type), "log.do_testimage")) 290 testimage_results = ftools.read_file(os.path.join(get_bb_var("T", image_type), "log.do_testimage"))
291 log.info('Runtime tests results for %s:' % image_type) 291 log.info('Runtime tests results for %s:' % image_type)
292 print testimage_results 292 print(testimage_results)
293 return result 293 return result
294 294
295 # Start the procedure! 295 # Start the procedure!