summaryrefslogtreecommitdiffstats
path: root/src/test/testcases/testMemUtil.py
diff options
context:
space:
mode:
authorMarty E. Plummer <hanetzer@startmail.com>2019-05-10 00:43:56 -0500
committerRAJA DAS <rajadas2@in.ibm.com>2020-01-15 23:42:58 -0600
commite0e6c72e94c754b76b1cdd4cbc44a15762e04dee (patch)
treeceec48183120c4b20de16efd4ddcc5488f5ec203 /src/test/testcases/testMemUtil.py
parent54f3205f2ce678cf8d377f4d3d5c23b3bce33096 (diff)
downloadtalos-sbe-e0e6c72e94c754b76b1cdd4cbc44a15762e04dee.tar.gz
talos-sbe-e0e6c72e94c754b76b1cdd4cbc44a15762e04dee.zip
treewide: use print function instead of statement
This enables better compat between python2.7 and python3.x Without this change, building with python3.x (python3.5 tested) as /usr/bin/python will result in the following error: File: "sbe/src/build/security/securityRegListGen.py", line 64 -v, --verbose enable verbose traces" ^ SyntaxError: Missing parentheses in call to 'print' Signed-off-by: Marty E. Plummer <hanetzer@startmail.com> Change-Id: Id617f54096fca5cc5fcd829767595a85350e343d Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89618 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Diffstat (limited to 'src/test/testcases/testMemUtil.py')
-rw-r--r--src/test/testcases/testMemUtil.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/testcases/testMemUtil.py b/src/test/testcases/testMemUtil.py
index b7d02c2d..7ae48569 100644
--- a/src/test/testcases/testMemUtil.py
+++ b/src/test/testcases/testMemUtil.py
@@ -22,6 +22,7 @@
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
+from __future__ import print_function
import sys
import os
import struct
@@ -141,8 +142,8 @@ def getmem(addr, len, flags):
readLen = testUtil.readDsEntryReturnVal()
if(getsingleword(lenExp) != list(readLen)):
- print getsingleword(lenExp)
- print list(readLen)
+ print(getsingleword(lenExp))
+ print(list(readLen))
raise Exception("Invalid Length")
expResp = [0xc0,0xde,0xa4,0x01,
@@ -185,7 +186,7 @@ def setUnsecureMemRegion(addr, size, controlFlag, responseWord):
# Host to SBE req
regObj = testPSUUtil.registry()
regObj.ExecuteTestOp(testPSUUtil.simSbeObj, req)
- print "\n Poll on Host side for INTR ...\n"
+ print("\n Poll on Host side for INTR ...\n")
#Poll on HOST DoorBell Register for interrupt
regObj.pollingOn( testPSUUtil.simSbeObj, host_polling_data, 5)
OpenPOWER on IntegriCloud