diff options
author | Lihua Zhao <44661095+LihuaZhao@users.noreply.github.com> | 2019-04-17 23:41:33 +0800 |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-04-17 17:41:33 +0200 |
commit | 693c104ae74feea11f0b51176dc91ecd153230c0 (patch) | |
tree | c6c288722c8748ee2c9d237b8b13c7a3e70c9f33 /Lib/test/test_resource.py | |
parent | 2954550818e5c23a082e6279eb326168230ebf04 (diff) | |
download | cpython-693c104ae74feea11f0b51176dc91ecd153230c0.tar.gz cpython-693c104ae74feea11f0b51176dc91ecd153230c0.zip |
bpo-31904: Port test_resource to VxWorks (GH-12719)
Skip tests cases setting RLIMIT_FSIZE and RLIMIT_CPU on VxWorks.
Diffstat (limited to 'Lib/test/test_resource.py')
-rw-r--r-- | Lib/test/test_resource.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_resource.py b/Lib/test/test_resource.py index 62c7963fe69..e5ece5284cf 100644 --- a/Lib/test/test_resource.py +++ b/Lib/test/test_resource.py @@ -16,6 +16,8 @@ class ResourceTest(unittest.TestCase): self.assertRaises(TypeError, resource.setrlimit) self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42) + @unittest.skipIf(sys.platform == "vxworks", + "setting RLIMIT_FSIZE is not supported on VxWorks") def test_fsize_ismax(self): try: (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE) @@ -110,6 +112,8 @@ class ResourceTest(unittest.TestCase): pass # Issue 6083: Reference counting bug + @unittest.skipIf(sys.platform == "vxworks", + "setting RLIMIT_CPU is not supported on VxWorks") def test_setrusage_refcount(self): try: limits = resource.getrlimit(resource.RLIMIT_CPU) |