]> granicus.if.org Git - python/commitdiff
#11963: avoid printing messages in test_parser. Initial patch by Éric Araujo.
authorEzio Melotti <ezio.melotti@gmail.com>
Sat, 9 Mar 2013 20:17:33 +0000 (22:17 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Sat, 9 Mar 2013 20:17:33 +0000 (22:17 +0200)
Lib/test/test_parser.py

index 70eb9c0cc2b0e59811a1b93f7676070be1523613..face39af3be87bf4d8894dc1cb2757c91306f5fc 100644 (file)
@@ -4,6 +4,7 @@ import sys
 import operator
 import struct
 from test import support
+from test.script_helper import assert_python_failure
 
 #
 #  First, we test that we can generate trees from valid source fragments,
@@ -607,10 +608,10 @@ class ParserStackLimitTestCase(unittest.TestCase):
 
     def test_trigger_memory_error(self):
         e = self._nested_expression(100)
-        print("Expecting 's_push: parser stack overflow' in next line",
-              file=sys.stderr)
-        sys.stderr.flush()
-        self.assertRaises(MemoryError, parser.expr, e)
+        rc, out, err = assert_python_failure('-c', e)
+        # parsing the expression will result in an error message
+        # followed by a MemoryError (see #11963)
+        self.assertEqual(err, b's_push: parser stack overflow\nMemoryError')
 
 class STObjectTestCase(unittest.TestCase):
     """Test operations on ST objects themselves"""