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 1ea0f73 commit 09d60f4Copy full SHA for 09d60f4
Lib/test/test_ctypes/test_dlerror.py
@@ -114,6 +114,9 @@ def test_null_dlsym(self):
114
with self.assertRaisesRegex(OSError, "symbol 'foo' not found"):
115
_ctypes.dlsym(L, "foo")
116
117
+ # Assert that the IFUNC was called
118
+ self.assertEqual(os.read(pipe_r, 2), b'OK')
119
+
120
121
@unittest.skipUnless(os.name != 'nt', 'test requires dlerror() calls')
122
class TestLocalization(unittest.TestCase):
0 commit comments