summaryrefslogtreecommitdiffstats
path: root/lldb/test/lldbinline.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/lldbinline.py')
-rw-r--r--lldb/test/lldbinline.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/test/lldbinline.py b/lldb/test/lldbinline.py
index f0ce453be49..0051c75b320 100644
--- a/lldb/test/lldbinline.py
+++ b/lldb/test/lldbinline.py
@@ -1,3 +1,5 @@
+from __future__ import print_function
+
import lldb
from lldbtest import *
import lldbutil
@@ -161,8 +163,8 @@ class InlineTest(TestBase):
value = self.frame().EvaluateExpression (expression)
self.assertTrue(value.IsValid(), expression+"returned a valid value")
if self.TraceOn():
- print value.GetSummary()
- print value.GetValue()
+ print(value.GetSummary())
+ print(value.GetValue())
if use_summary:
answer = value.GetSummary()
else:
OpenPOWER on IntegriCloud