diff options
Diffstat (limited to 'lldb/test/functionalities/alias/py_import')
-rw-r--r-- | lldb/test/functionalities/alias/py_import | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/test/functionalities/alias/py_import b/lldb/test/functionalities/alias/py_import index 9deba49e8f4..9f36a7f8996 100644 --- a/lldb/test/functionalities/alias/py_import +++ b/lldb/test/functionalities/alias/py_import @@ -1,6 +1,6 @@ script import sys, os script sys.path.append(os.path.join(os.getcwd(), os.pardir)) -script from welcome import * -command script add welcome --function welcome_impl -command script add targetname --function target_name_impl -command script add longwait --function print_wait_impl +script import welcome +command script add welcome --function welcome.welcome_impl +command script add targetname --function welcome.target_name_impl +command script add longwait --function welcome.print_wait_impl |