From: Brett Cannon Date: Fri, 25 Oct 2013 19:45:25 +0000 (-0400) Subject: test_resource should not assume all attributes are available when they X-Git-Tag: v3.4.0b1~539 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a20800d1d93bf83c131523f14271a34641f1f588;p=thirdparty%2FPython%2Fcpython.git test_resource should not assume all attributes are available when they are individually controlled by #ifdef statements in the extension code. --- diff --git a/Lib/test/test_resource.py b/Lib/test/test_resource.py index 218465522084..006198fc410b 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)