-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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
HTTP client&server tests fail. DNS_ServerName and URL_Target strings conjoined into nonsense. #5
Labels
Comments
Comment 1 by [email protected]: This happens when OS X has the firewall enabled and won't let Go listen on a UDP port for the DNS response. The workaround is either to disable the test (add http and net to NOTEST in $GOROOT/src/pkg/Makefile) or disable the firewall. |
I'm getting something similar. No firewall. gopack grc _test/net.a _gotest_.6 --- FAIL: net.TestDialError #2: nil error, want match for `dial tcp no-such-name.google.com.:80: lookup no-such-name.google.com.( on .*)?: no (.*)` #3: nil error, want match for `dial tcp no-such-name.no-such-top-level-domain.:80: lookup no-such-name.no-such-top-level-domain.( on .*)?: no (.*)` |
I just pulled and updated, and I am getting a similar error. gopack grc _test/http.a _gotest_.6 --- FAIL: http.TestClient Get https://www.google.com/robots.txt: dial tcp www.google.com:http: open /etc/resolv.conf: no such file or directory I do not have an /etc/resolv.conf -- python / bison / ed &c are installed using macports. The installation *succeeds*, but the tests fail |
minux
pushed a commit
to minux/goios
that referenced
this issue
Feb 27, 2015
Arm64 CPU uses op from, reg form, not op from, to. Fixes golang#5 Change-Id: I5203ee8f1c4fef52da2ec3da2afae07bf7ff0273
CL https://golang.org/cl/16470 mentions this issue. |
gopherbot
pushed a commit
that referenced
this issue
Feb 26, 2016
This change adds support in testing/quick to generate maps and slices in additional states: (1.) nil maps (2.) nil slices (3.) empty slice occupancy: `len(s) == 0 && s != nil` (4.) partial slice occupancy: `len(s) < cap(s) && s != nil` (5.) full slice occupancy: `len(s) == cap(s) && s != nil` Prior to this, only #5 was ever generated, thereby not sufficiently exercising all of the fuzzable code path outcomes. This change depends on https://go-review.googlesource.com/#/c/17499/. Change-Id: I9343c475cefbd72ffc5237281826465c25872206 Reviewed-on: https://go-review.googlesource.com/16470 Reviewed-by: Brad Fitzpatrick <[email protected]> Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
by twitwad:
The text was updated successfully, but these errors were encountered: