diff options
Diffstat (limited to 'lldb/test/functionalities/load_unload/TestLoadUnload.py')
-rw-r--r-- | lldb/test/functionalities/load_unload/TestLoadUnload.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/test/functionalities/load_unload/TestLoadUnload.py b/lldb/test/functionalities/load_unload/TestLoadUnload.py index 7122cdc3c60..7f67fb539fc 100644 --- a/lldb/test/functionalities/load_unload/TestLoadUnload.py +++ b/lldb/test/functionalities/load_unload/TestLoadUnload.py @@ -2,6 +2,8 @@ Test that breakpoint by symbol name works correctly with dynamic libs. """ +from __future__ import print_function + import lldb_shared import os, time @@ -110,7 +112,7 @@ class LoadUnloadTestCase(TestBase): # Inform (DY)LD_LIBRARY_PATH of the new path, too. env_cmd_string = "settings set target.env-vars " + self.dylibPath + "=" + new_dir if self.TraceOn(): - print "Set environment to: ", env_cmd_string + print("Set environment to: ", env_cmd_string) self.runCmd(env_cmd_string) self.runCmd("settings show target.env-vars") @@ -224,7 +226,7 @@ class LoadUnloadTestCase(TestBase): output = self.res.GetOutput() pattern = re.compile("Image ([0-9]+) loaded") for l in output.split(os.linesep): - #print "l:", l + #print("l:", l) match = pattern.search(l) if match: break |