forked from pool/python-psutil
- Update to 6.1.1
* 2471_: use Vulture CLI tool to detect dead code.
* 2418_, [Linux]: fix race condition in case /proc/PID/stat does not exist, but
/proc/PID does, resulting in FileNotFoundError.
* 2470_, [Linux]: `users()`_ may return "localhost" instead of the actual IP
address of the user logged in.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-psutil?expand=0&rev=177
This commit is contained in:
56
skip_rlimit_tests_on_python2.patch
Normal file
56
skip_rlimit_tests_on_python2.patch
Normal file
@@ -0,0 +1,56 @@
|
||||
---
|
||||
psutil/tests/test_process.py | 6 ++++++
|
||||
1 file changed, 6 insertions(+)
|
||||
|
||||
Index: psutil-5.9.6/psutil/tests/test_process.py
|
||||
===================================================================
|
||||
--- psutil-5.9.6.orig/psutil/tests/test_process.py
|
||||
+++ psutil-5.9.6/psutil/tests/test_process.py
|
||||
@@ -419,6 +419,7 @@ class TestProcess(PsutilTestCase):
|
||||
p.ionice(init)
|
||||
|
||||
@unittest.skipIf(not HAS_RLIMIT, "not supported")
|
||||
+ @unittest.skipIf(sys.version_info.major == 2, "not supported on python2")
|
||||
def test_rlimit_get(self):
|
||||
import resource
|
||||
p = psutil.Process(os.getpid())
|
||||
@@ -442,6 +443,7 @@ class TestProcess(PsutilTestCase):
|
||||
self.assertGreaterEqual(ret[1], -1)
|
||||
|
||||
@unittest.skipIf(not HAS_RLIMIT, "not supported")
|
||||
+ @unittest.skipIf(sys.version_info.major == 2, "not supported on python2")
|
||||
def test_rlimit_set(self):
|
||||
p = self.spawn_psproc()
|
||||
p.rlimit(psutil.RLIMIT_NOFILE, (5, 5))
|
||||
@@ -455,6 +457,7 @@ class TestProcess(PsutilTestCase):
|
||||
p.rlimit(psutil.RLIMIT_NOFILE, (5, 5, 5))
|
||||
|
||||
@unittest.skipIf(not HAS_RLIMIT, "not supported")
|
||||
+ @unittest.skipIf(sys.version_info.major == 2, "not supported on python2")
|
||||
def test_rlimit(self):
|
||||
p = psutil.Process()
|
||||
testfn = self.get_testfn()
|
||||
@@ -475,6 +478,7 @@ class TestProcess(PsutilTestCase):
|
||||
self.assertEqual(p.rlimit(psutil.RLIMIT_FSIZE), (soft, hard))
|
||||
|
||||
@unittest.skipIf(not HAS_RLIMIT, "not supported")
|
||||
+ @unittest.skipIf(sys.version_info.major == 2, "not supported on python2")
|
||||
def test_rlimit_infinity(self):
|
||||
# First set a limit, then re-set it by specifying INFINITY
|
||||
# and assume we overridden the previous limit.
|
||||
@@ -490,6 +494,7 @@ class TestProcess(PsutilTestCase):
|
||||
self.assertEqual(p.rlimit(psutil.RLIMIT_FSIZE), (soft, hard))
|
||||
|
||||
@unittest.skipIf(not HAS_RLIMIT, "not supported")
|
||||
+ @unittest.skipIf(sys.version_info.major == 2, "not supported on python2")
|
||||
def test_rlimit_infinity_value(self):
|
||||
# RLIMIT_FSIZE should be RLIM_INFINITY, which will be a really
|
||||
# big number on a platform with large file support. On these
|
||||
@@ -1303,6 +1308,7 @@ class TestProcess(PsutilTestCase):
|
||||
assert_raises_nsp(fun, name)
|
||||
|
||||
@unittest.skipIf(not POSIX, 'POSIX only')
|
||||
+ @unittest.skipIf(sys.version_info.major == 2, "not supported on python2")
|
||||
def test_zombie_process(self):
|
||||
parent, zombie = self.spawn_zombie()
|
||||
self.assertProcessZombie(zombie)
|
||||
Reference in New Issue
Block a user