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.
2 parents 68ef028 + 197e4c0 commit 35cccf2Copy full SHA for 35cccf2
Lib/test/test_ctypes/test_dlerror.py
@@ -30,8 +30,9 @@
30
"""
31
32
33
-@unittest.skipUnless(sys.platform.startswith('linux'),
34
- 'test requires GNU IFUNC support')
+@unittest.skipIf(not sys.platform.startswith('linux')
+ or platform.machine().startswith('parisc'),
35
+ 'test requires GNU IFUNC support')
36
@unittest.skipIf(test.support.linked_to_musl(), "Requires glibc")
37
class TestNullDlsym(unittest.TestCase):
38
"""GH-126554: Ensure that we catch NULL dlsym return values
0 commit comments