-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate flaky test-https-connect-address-family.js and test-tls-connect-address-family #7288
Comments
Theory != practice, unfortunately. The initial version of #6654 used that list but it only caused more CI fallout, not less. |
FWIW, I think that once nodejs/build#415 happens, using the list of IPv6 local hostnames in |
I have to agree this is quite annoying as this fails 100% on my ubuntu 14 box. The result is that other tests are not run, and you have to know to run things like make lint on your own. I wonder if the default runs should exclude all flaky tests ? |
@Trott as I understand it, nodejs/build#415 means localhost will resolve to ::1 on the build machines, but it won't make a difference for anyone running |
@gibm I think it will make the "try all the items in the IPv6 local hostnames in |
Another option is to confirm that dns.lookup('localhost', {family:6, all: true}, (err, addresses) => {
// code that skips the test if err is true or addresses does not contain { address: '::1', family: 6 }
// otherwise, this kicks off the test
}); |
Simple workaround: #7605 Might be an argument for cycling through |
Skip test if localhost does not resolve to ::1. Fixes: nodejs#7288
Skip test if localhost does not resolve to ::1. Fixes: nodejs#7288
Skip tests if localhost does not resolve to ::1. Fixes: #7288 PR-URL: #7605 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Conflicts: test/parallel/test-https-connect-address-family.js test/parallel/test-tls-connect-address-family.js
Skip tests if localhost does not resolve to ::1. Fixes: #7288 PR-URL: #7605 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
Skip tests if localhost does not resolve to ::1. Fixes: #7288 PR-URL: #7605 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
Skip tests if localhost does not resolve to ::1. Fixes: #7288 PR-URL: #7605 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
See #6654 (comment) and nodejs/build#415
These tests were added in v6.2.1 and were marked as flaky due to a problem with resolving localhost on IPv6 on some Linux distros.
Basically
/etc/hosts
needs to contain the line::1 localhost
in order for localhost to be properly resolved. Most distros seem to have it (e.g. Ubuntu 16.04:::1 localhost ip6-localhost ip6-loopback
) but some, (e.g. Ubuntu 14.04/15.04::1 ip6-localhost ip6-loopback
) don't. Given the number of people that will be testing their pull requests withmake test
, it seems important to make sure that this test passes on machines with other strings in their::1
section.As
./test/common.js
contains this list of options, it should in theory work.@bnoordhuis @jbergstroem I know you were/are looking into this, I just wanted to make sure we had an issue open for it.
The text was updated successfully, but these errors were encountered: