summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_parser.py')
-rw-r--r--Lib/test/test_parser.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/Lib/test/test_parser.py b/Lib/test/test_parser.py
index 9e99475..966f3e9 100644
--- a/Lib/test/test_parser.py
+++ b/Lib/test/test_parser.py
@@ -353,5 +353,13 @@ class IllegalSyntaxTestCase(unittest.TestCase):
self.check_bad_tree(tree, "a $= b")
-test_support.run_unittest(RoundtripLegalSyntaxTestCase)
-test_support.run_unittest(IllegalSyntaxTestCase)
+def test_main():
+ loader = unittest.TestLoader()
+ suite = unittest.TestSuite()
+ suite.addTest(loader.loadTestsFromTestCase(RoundtripLegalSyntaxTestCase))
+ suite.addTest(loader.loadTestsFromTestCase(IllegalSyntaxTestCase))
+ test_support.run_suite(suite)
+
+
+if __name__ == "__main__":
+ test_main()