From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 21 Sep 2022 01:55:13 +0000 (-0700) Subject: gh-90808: add more examples to `test_sched.test_priority` (GH-31144) X-Git-Tag: v3.10.8~120 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a111a50365aa914be2cd528c3102c91b74879ab;p=thirdparty%2FPython%2Fcpython.git gh-90808: add more examples to `test_sched.test_priority` (GH-31144) (cherry picked from commit 57463d43dc4277a1f4d33bd003567e947c937cf5) Co-authored-by: Nikita Sobolev --- diff --git a/Lib/test/test_sched.py b/Lib/test/test_sched.py index 7ae7baae85e2..b9c8ea396a4d 100644 --- a/Lib/test/test_sched.py +++ b/Lib/test/test_sched.py @@ -91,10 +91,23 @@ class TestCase(unittest.TestCase): l = [] fun = lambda x: l.append(x) scheduler = sched.scheduler(time.time, time.sleep) - for priority in [1, 2, 3, 4, 5]: - z = scheduler.enterabs(0.01, priority, fun, (priority,)) - scheduler.run() - self.assertEqual(l, [1, 2, 3, 4, 5]) + + cases = [ + ([1, 2, 3, 4, 5], [1, 2, 3, 4, 5]), + ([5, 4, 3, 2, 1], [1, 2, 3, 4, 5]), + ([2, 5, 3, 1, 4], [1, 2, 3, 4, 5]), + ([1, 2, 3, 2, 1], [1, 1, 2, 2, 3]), + ] + for priorities, expected in cases: + with self.subTest(priorities=priorities, expected=expected): + for priority in priorities: + scheduler.enterabs(0.01, priority, fun, (priority,)) + scheduler.run() + self.assertEqual(l, expected) + + # Cleanup: + self.assertTrue(scheduler.empty()) + l.clear() def test_cancel(self): l = []