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.
This commit is contained in:
Eli Bendersky 2013-09-02 17:01:10 -07:00
parent e5eebedd55
commit e8de29669d
2 changed files with 7 additions and 15 deletions

View file

@ -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):