Skip to content

Commit 51a5e29

Browse files
committed
Fix verify test for dynamic musl
1 parent d590f87 commit 51a5e29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/verify_distribution.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def test_ctypes(self):
5353
import ctypes
5454

5555
# pythonapi will be None on statically linked binaries.
56-
if os.environ["TARGET_TRIPLE"].endswith("-unknown-linux-musl"):
56+
is_static = False # TODO: Populate if we have statically linked binaries again
57+
if is_static:
5758
self.assertIsNone(ctypes.pythonapi)
5859
else:
5960
self.assertIsNotNone(ctypes.pythonapi)

0 commit comments

Comments
 (0)