summaryrefslogtreecommitdiffstats
path: root/src/test/testcases/testRunTillSbeBooted.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/testcases/testRunTillSbeBooted.py')
-rw-r--r--src/test/testcases/testRunTillSbeBooted.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/testcases/testRunTillSbeBooted.py b/src/test/testcases/testRunTillSbeBooted.py
index 16b7a475..b56c0c74 100644
--- a/src/test/testcases/testRunTillSbeBooted.py
+++ b/src/test/testcases/testRunTillSbeBooted.py
@@ -22,6 +22,7 @@
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
+from __future__ import print_function
import os
import sys
sys.path.append("targets/p9_nimbus/sbeTest" )
@@ -41,11 +42,11 @@ else:
while True:
try:
if testUtil.read(lbus, 0x2824, 4)[0] & 0x80 :
- print "SBE is booted, continue"
+ print("SBE is booted, continue")
break
else:
- print "SBE is still not booted"
+ print("SBE is still not booted")
except:
- print "."
+ print(".")
testUtil.runCycles( 10000000 )
OpenPOWER on IntegriCloud