summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asyncio/test_tasks.py')
-rw-r--r--Lib/test/test_asyncio/test_tasks.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py
index 1d77f9f..f66f7f1 100644
--- a/Lib/test/test_asyncio/test_tasks.py
+++ b/Lib/test/test_asyncio/test_tasks.py
@@ -2350,6 +2350,10 @@ class GatherTestsBase:
PYTHONPATH=aio_path)
self.assertEqual(stdout.rstrip(), b'False')
+ sts, stdout, stderr = assert_python_ok('-E', '-X', 'dev',
+ '-c', code)
+ self.assertEqual(stdout.rstrip(), b'True')
+
class FutureGatherTests(GatherTestsBase, test_utils.TestCase):