A recent commit to master causes the addr/parse test to run for a few minutes on my Debian 10.1 install. The test works fine on maint-0.4.1, and on some of my older master branches.
This issue doesn't seem to affect our CI builders.
I haven't had time to bisect yet.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
Trac: Description: A recent commit to master causes the addr/parse test to hang on my Debian 10.1 install. The test works fine on maint-0.4.1, and on some of my older master branches.
This issue doesn't seem to affect our CI builders.
I haven't had time to bisect yet.
to
A recent commit to master causes the addr/parse test to run for a few minutes on my Debian 10.1 install. The test works fine on maint-0.4.1, and on some of my older master branches.
This issue doesn't seem to affect our CI builders.
I haven't had time to bisect yet. Summary: test addr/parse hangs on master on some machines to test addr/parse takes a long time on master on some machines
I think the solution here is, if the test does any hostname lookups, to mock out the lowest-level getaddrinfo or gethostbyname function, so that we aren't going out to the network from this test.
I suspected systems with slow DNS. Fortunately, all our blocking DNS lookup happens in one place, in one block within tor_addr_lookup(), so it's easy to see which unit tests call it. They are:
I suspect that coverage may go down, since we are removing all the code that used to call into tor_addr_lookup_host_{getaddrinfo,gethostbyname}() no longer does so. I'm not sure of a meaningful way to test those, however, without potentially invoking a DNS resolver.