From 6fc934e9f804fa568d9d9ef529850fb65d595a95 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Thu, 31 May 2018 08:51:37 -0600 Subject: [PATCH] Disable the test that is triggering crashes. --- Lib/test/test__xxsubinterpreters.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test__xxsubinterpreters.py b/Lib/test/test__xxsubinterpreters.py index f66cc95169260d..0667f14f7bf475 100644 --- a/Lib/test/test__xxsubinterpreters.py +++ b/Lib/test/test__xxsubinterpreters.py @@ -1315,6 +1315,8 @@ def test_run_string_arg_unresolved(self): self.assertEqual(obj, b'spam') self.assertEqual(out.strip(), 'send') + # XXX Fix the crashes. + @unittest.skip('bpo-33615: triggering crashes so temporarily disabled') def test_run_string_arg_resolved(self): cid = interpreters.channel_create() cid = interpreters._channel_id(cid, _resolve=True)