From a20800d1d93bf83c131523f14271a34641f1f588 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 25 Oct 2013 15:45:25 -0400 Subject: [PATCH] test_resource should not assume all attributes are available when they are individually controlled by #ifdef statements in the extension code. --- Lib/test/test_resource.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Lib/test/test_resource.py b/Lib/test/test_resource.py index 2184655220..006198fc41 100644 --- a/Lib/test/test_resource.py +++ b/Lib/test/test_resource.py @@ -1,3 +1,4 @@ +import contextlib import sys import os import unittest @@ -133,12 +134,9 @@ class ResourceTest(unittest.TestCase): @unittest.skipUnless(sys.platform == 'linux', 'test requires Linux') def test_linux_constants(self): - self.assertIsInstance(resource.RLIMIT_MSGQUEUE, int) - self.assertIsInstance(resource.RLIMIT_NICE, int) - self.assertIsInstance(resource.RLIMIT_RTPRIO, int) - self.assertIsInstance(resource.RLIMIT_RTTIME, int) - self.assertIsInstance(resource.RLIMIT_SIGPENDING, int) - + for attr in ['MSGQUEUE', 'NICE', 'RTPRIO', 'RTTIME', 'SIGPENDING']: + with contextlib.suppress(AttributeError): + self.assertIsInstance(getattr(resource, 'RLIMIT_' + attr), int) @unittest.skipUnless(hasattr(resource, 'prlimit'), 'no prlimit') @support.requires_linux_version(2, 6, 36) -- 2.40.0