Skip to content

Commit e74c516

Browse files
author
Davide Italiano
committed
[TestIndirectSymbol] This tests an Apple-specific feature.
Remove a redundant check.
1 parent 432ed54 commit e74c516

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lldb/test/API/macosx/indirect_symbol/TestIndirectSymbols.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ def test_with_python_api(self):
2828
target = self.dbg.CreateTarget(exe)
2929
self.assertTrue(target, VALID_TARGET)
3030

31-
if self.platformIsDarwin():
32-
lib1 = self.getBuildArtifact('libindirect.dylib')
33-
lib2 = self.getBuildArtifact('libreexport.dylib')
34-
self.registerSharedLibrariesWithTarget(target, [lib1, lib2])
31+
lib1 = self.getBuildArtifact('libindirect.dylib')
32+
lib2 = self.getBuildArtifact('libreexport.dylib')
33+
self.registerSharedLibrariesWithTarget(target, [lib1, lib2])
3534

3635
self.main_source_spec = lldb.SBFileSpec(self.main_source)
3736

0 commit comments

Comments
 (0)