예제 #1
0
 def create_debug_adaptor(self):
     '''Create the Visual Studio Code debug adaptor'''
     self.assertTrue(os.path.exists(self.lldbVSCodeExec),
                     'lldb-vscode must exist')
     log_file_path = self.getBuildArtifact('vscode.txt')
     self.vscode = vscode.DebugAdaptor(executable=self.lldbVSCodeExec,
                                       init_commands=self.setUpCommands(),
                                       log_file=log_file_path)
예제 #2
0
 def create_debug_adaptor(self):
     '''Create the Visual Studio Code debug adaptor'''
     self.assertTrue(os.path.exists(self.lldbVSCodeExec),
                     'lldb-vscode must exist')
     self.vscode = vscode.DebugAdaptor(executable=self.lldbVSCodeExec,
                                       init_commands=Base.setUpCommands())