
commit b08dbff38392dec1308486697ebf9f7470936357 Author: Damian Johnson <atagar@torproject.org> Date: Fri Sep 28 11:07:55 2018 -0700 Disable connection test for 'ss' Nick is having issues with this test. Unfortunately I don't have a repro for the failure nor have there been other reports so unsure how to dig in further. Nick reports that it *does* provide connection results... 17:40 <+nickm> atagar: I get a bunch of firefox and ssh entries. 17:40 <+nickm> [1166]$ which ss 17:40 <+nickm> /usr/sbin/ss ... but evidently solely for this connection resolver can't detect the tor control connection? https://trac.torproject.org/projects/tor/ticket/27479 Simply disabling the test for now so test runs will pass for him. --- test/integ/util/connection.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/integ/util/connection.py b/test/integ/util/connection.py index 19ba1996..933c5788 100644 --- a/test/integ/util/connection.py +++ b/test/integ/util/connection.py @@ -46,7 +46,10 @@ class TestConnection(unittest.TestCase): self.check_resolver(Resolver.NETSTAT_WINDOWS) def test_connections_by_ss(self): - self.check_resolver(Resolver.SS) + try: + self.check_resolver(Resolver.SS) + except OSError: + self.skipTest('(ticket 27479)') def test_connections_by_lsof(self): self.check_resolver(Resolver.LSOF)
participants (1)
-
atagar@torproject.org