Skip to content

Commit 35cccf2

Browse files
Merge branch 'main' into improve-sorted-documentation
2 parents 68ef028 + 197e4c0 commit 35cccf2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Lib/test/test_ctypes/test_dlerror.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@
3030
"""
3131

3232

33-
@unittest.skipUnless(sys.platform.startswith('linux'),
34-
'test requires GNU IFUNC support')
33+
@unittest.skipIf(not sys.platform.startswith('linux')
34+
or platform.machine().startswith('parisc'),
35+
'test requires GNU IFUNC support')
3536
@unittest.skipIf(test.support.linked_to_musl(), "Requires glibc")
3637
class TestNullDlsym(unittest.TestCase):
3738
"""GH-126554: Ensure that we catch NULL dlsym return values

0 commit comments

Comments
 (0)