bpo-32733: Make test_coroutines robust against -Werror (GH-5487) (GH-5490)

(cherry picked from commit 2efb973589)

Co-authored-by: Nathaniel J. Smith <njs@pobox.com>
This commit is contained in:
Miss Islington (bot) 2018-02-01 21:57:28 -08:00 committed by Nathaniel J. Smith
parent e985afc38d
commit 709f6ad7f8
1 changed files with 2 additions and 7 deletions

View File

@ -2152,15 +2152,10 @@ class OriginTrackingTest(unittest.TestCase):
def check(depth, msg):
sys.set_coroutine_origin_tracking_depth(depth)
with warnings.catch_warnings(record=True) as wlist:
with self.assertWarns(RuntimeWarning) as cm:
a2()
support.gc_collect()
# This might be fragile if other warnings somehow get triggered
# inside our 'with' block... let's worry about that if/when it
# happens.
self.assertTrue(len(wlist) == 1)
self.assertIs(wlist[0].category, RuntimeWarning)
self.assertEqual(msg, str(wlist[0].message))
self.assertEqual(msg, str(cm.warning))
orig_depth = sys.get_coroutine_origin_tracking_depth()
try: