diff options
| author | Larry Hastings <larry@hastings.org> | 2013-09-09 12:12:21 (GMT) |
|---|---|---|
| committer | Larry Hastings <larry@hastings.org> | 2013-09-09 12:12:21 (GMT) |
| commit | 8568f66daf088cf235a42288621fb4770ac48199 (patch) | |
| tree | 3db459417e7c4b112b03d59661057f09ff058d07 /Lib/test/test_regrtest.py | |
| parent | 60560b18d29a917e64d88d47c5533743001f0787 (diff) | |
| parent | 23543ebd8676384c1c5e28f7a1496777a57479d5 (diff) | |
| download | cpython-8568f66daf088cf235a42288621fb4770ac48199.zip cpython-8568f66daf088cf235a42288621fb4770ac48199.tar.gz cpython-8568f66daf088cf235a42288621fb4770ac48199.tar.bz2 | |
Merge.
Diffstat (limited to 'Lib/test/test_regrtest.py')
| -rw-r--r-- | Lib/test/test_regrtest.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 289fb22..353874b 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -3,6 +3,7 @@ Tests of regrtest.py. """ import argparse +import faulthandler import getopt import os.path import unittest @@ -25,6 +26,8 @@ class ParseArgsTestCase(unittest.TestCase): regrtest._parse_args([opt]) self.assertIn('Run Python regression tests.', out.getvalue()) + @unittest.skipUnless(hasattr(faulthandler, 'dump_traceback_later'), + "faulthandler.dump_traceback_later() required") def test_timeout(self): ns = regrtest._parse_args(['--timeout', '4.2']) self.assertEqual(ns.timeout, 4.2) |
