diff options
Diffstat (limited to 'lldb/test/functionalities/command_script/import')
| -rw-r--r-- | lldb/test/functionalities/command_script/import/thepackage/TPunitA.py | 5 | ||||
| -rw-r--r-- | lldb/test/functionalities/command_script/import/thepackage/TPunitB.py | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lldb/test/functionalities/command_script/import/thepackage/TPunitA.py b/lldb/test/functionalities/command_script/import/thepackage/TPunitA.py index 86381a1acc2..cd18e4cfc95 100644 --- a/lldb/test/functionalities/command_script/import/thepackage/TPunitA.py +++ b/lldb/test/functionalities/command_script/import/thepackage/TPunitA.py @@ -1,3 +1,6 @@ +import lldb_shared +import six + def command(debugger, command, result, internal_dict): - result.PutCString(u"hello world A") + result.PutCString(six.u("hello world A")) return None diff --git a/lldb/test/functionalities/command_script/import/thepackage/TPunitB.py b/lldb/test/functionalities/command_script/import/thepackage/TPunitB.py index 52db603e512..936201157ac 100644 --- a/lldb/test/functionalities/command_script/import/thepackage/TPunitB.py +++ b/lldb/test/functionalities/command_script/import/thepackage/TPunitB.py @@ -1,3 +1,6 @@ +import lldb_shared +import six + def command(debugger, command, result, internal_dict): - result.PutCString(u"hello world B") + result.PutCString(six.u("hello world B")) return None |

