We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 432ed54 commit e74c516Copy full SHA for e74c516
lldb/test/API/macosx/indirect_symbol/TestIndirectSymbols.py
@@ -28,10 +28,9 @@ def test_with_python_api(self):
28
target = self.dbg.CreateTarget(exe)
29
self.assertTrue(target, VALID_TARGET)
30
31
- if self.platformIsDarwin():
32
- lib1 = self.getBuildArtifact('libindirect.dylib')
33
- lib2 = self.getBuildArtifact('libreexport.dylib')
34
- self.registerSharedLibrariesWithTarget(target, [lib1, lib2])
+ lib1 = self.getBuildArtifact('libindirect.dylib')
+ lib2 = self.getBuildArtifact('libreexport.dylib')
+ self.registerSharedLibrariesWithTarget(target, [lib1, lib2])
35
36
self.main_source_spec = lldb.SBFileSpec(self.main_source)
37
0 commit comments