diff options
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r-- | Lib/test/test_posix.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index f70688d8b5..c8d0859e81 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -984,6 +984,13 @@ class PosixTester(unittest.TestCase): self.assertIs(b, l) self.assertEqual(l.count(), 3) + def test_rtld_constants(self): + # check presence of major RTLD_* constants + posix.RTLD_LAZY + posix.RTLD_NOW + posix.RTLD_GLOBAL + posix.RTLD_LOCAL + class PosixGroupsTester(unittest.TestCase): def setUp(self): |