Skip to content

Commit 09d60f4

Browse files
committed
revert a missing line
1 parent 1ea0f73 commit 09d60f4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/test/test_ctypes/test_dlerror.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ def test_null_dlsym(self):
114114
with self.assertRaisesRegex(OSError, "symbol 'foo' not found"):
115115
_ctypes.dlsym(L, "foo")
116116

117+
# Assert that the IFUNC was called
118+
self.assertEqual(os.read(pipe_r, 2), b'OK')
119+
117120

118121
@unittest.skipUnless(os.name != 'nt', 'test requires dlerror() calls')
119122
class TestLocalization(unittest.TestCase):

0 commit comments

Comments
 (0)