@@ -207,7 +207,7 @@ def find_data_section(self, target):
207
207
return data_section
208
208
209
209
def find_global_variables (self , exe_name ):
210
- """Exercise SBTaget .FindGlobalVariables() API."""
210
+ """Exercise SBTarget .FindGlobalVariables() API."""
211
211
exe = self .getBuildArtifact (exe_name )
212
212
213
213
# Create a target by the debugger.
@@ -272,7 +272,7 @@ def find_compile_units(self, exe):
272
272
list [0 ].GetCompileUnit ().GetFileSpec ().GetFilename (), source_name )
273
273
274
274
def find_functions (self , exe_name ):
275
- """Exercise SBTaget .FindFunctions() API."""
275
+ """Exercise SBTarget .FindFunctions() API."""
276
276
exe = self .getBuildArtifact (exe_name )
277
277
278
278
# Create a target by the debugger.
@@ -292,7 +292,7 @@ def find_functions(self, exe_name):
292
292
self .assertEqual (sc .GetSymbol ().GetName (), 'c' )
293
293
294
294
def get_description (self ):
295
- """Exercise SBTaget .GetDescription() API."""
295
+ """Exercise SBTarget .GetDescription() API."""
296
296
exe = self .getBuildArtifact ("a.out" )
297
297
298
298
# Create a target by the debugger.
@@ -321,7 +321,7 @@ def get_description(self):
321
321
@skipIfRemote
322
322
@no_debug_info_test
323
323
def test_launch_new_process_and_redirect_stdout (self ):
324
- """Exercise SBTaget .Launch() API with redirected stdout."""
324
+ """Exercise SBTarget .Launch() API with redirected stdout."""
325
325
self .build ()
326
326
exe = self .getBuildArtifact ("a.out" )
327
327
@@ -380,7 +380,7 @@ def test_launch_new_process_and_redirect_stdout(self):
380
380
substrs = ["a(1)" , "b(2)" , "a(3)" ])
381
381
382
382
def resolve_symbol_context_with_address (self ):
383
- """Exercise SBTaget .ResolveSymbolContextForAddress() API."""
383
+ """Exercise SBTarget .ResolveSymbolContextForAddress() API."""
384
384
exe = self .getBuildArtifact ("a.out" )
385
385
386
386
# Create a target by the debugger.
0 commit comments