diff options
author | Eli Bendersky <eliben@gmail.com> | 2013-09-03 00:01:10 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2013-09-03 00:01:10 (GMT) |
commit | e8de29669d4788a0a2f5deab665d4b02f53ef5c2 (patch) | |
tree | 7a8ff6ce000088a4bd16d2d8a76e93d379cc5a1f /Lib/test/test_regrtest.py | |
parent | e5eebedd55334a7f869b9e6f73b084e60b587006 (diff) | |
download | cpython-e8de29669d4788a0a2f5deab665d4b02f53ef5c2.zip cpython-e8de29669d4788a0a2f5deab665d4b02f53ef5c2.tar.gz cpython-e8de29669d4788a0a2f5deab665d4b02f53ef5c2.tar.bz2 |
Remove unused --debug option of regrtest.
If bots fail due to using this flag, the buildbot scripts have to be modified
to omit it. Regrtest ignores it anyway.
Diffstat (limited to 'Lib/test/test_regrtest.py')
-rw-r--r-- | Lib/test/test_regrtest.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index a5143c2..289fb22 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -71,12 +71,6 @@ class ParseArgsTestCase(unittest.TestCase): ns = regrtest._parse_args([opt]) self.assertTrue(ns.verbose3) - def test_debug(self): - for opt in '-d', '--debug': - with self.subTest(opt=opt): - ns = regrtest._parse_args([opt]) - self.assertTrue(ns.debug) - def test_quiet(self): for opt in '-q', '--quiet': with self.subTest(opt=opt): |