[tor-commits] [stem/master] Ignore missing TestingClientBootstrapConsensusAuthorityOnlyMaxDownloadTries
atagar at torproject.org
atagar at torproject.org
Mon Feb 22 17:40:58 UTC 2016
commit 1970e1b448120e276fc6c04bf86bf5e9f5686e67
Author: Damian Johnson <atagar at 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))
More information about the tor-commits
mailing list