aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/__init__.py
blob: 1181462af868278da6d3dd308834e65c7c49cce7 (plain) (blame)
1
2
3
4
5
6
7
8
from __future__ import absolute_import

from . import TPunitA
from . import TPunitB

def __lldb_init_module(debugger,*args):
	debugger.HandleCommand("command script add -f thepackage.TPunitA.command TPcommandA")
	debugger.HandleCommand("command script add -f thepackage.TPunitB.command TPcommandB")