[stem/master] Ignore missing TestingClientBootstrapConsensusAuthorityOnlyMaxDownloadTries

commit 1970e1b448120e276fc6c04bf86bf5e9f5686e67 Author: Damian Johnson <atagar@torproject.org> Date: Mon Feb 22 09:43:34 2016 -0800 Ignore missing TestingClientBootstrapConsensusAuthorityOnlyMaxDownloadTries We've had a ticket about this for a couple month now. Lets stop failing our integ tests over it... https://trac.torproject.org/projects/tor/ticket/17913 --- test/integ/manual.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integ/manual.py b/test/integ/manual.py index d20c407..d877c74 100644 --- a/test/integ/manual.py +++ b/test/integ/manual.py @@ -302,6 +302,9 @@ class TestManual(unittest.TestCase): missing_from_manual = config_options_in_tor.difference(config_options_in_manual) + if 'TestingClientBootstrapConsensusAuthorityOnlyMaxDownloadTries' in missing_from_manual: + missing_from_manual.remove('TestingClientBootstrapConsensusAuthorityOnlyMaxDownloadTries') # https://trac.torproject.org/projects/tor/ticket/17913 + if missing_from_manual: self.fail("The %s config options supported by tor isn't in its man page. Maybe we need to add them?" % ', '.join(missing_from_manual))
participants (1)
-
atagar@torproject.org