-
Notifications
You must be signed in to change notification settings - Fork 17.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
all.bat: tests fails in windows 10 at tip #22687
Comments
The size of this issue is massive - please try to put most of the copy-pasted text into a file and link to it. Otherwise it's unmanageable. |
OK. Updated original report with link to full output. Three package tests are failing. 1. net/http --- FAIL: TestTransportBodyReadError (0.08s) 2. runtime Line 137: --- FAIL: TestGdbBacktrace (4.20s) 3. cmd/go panic: test timed out after 3m0s goroutine 970 [running]: goroutine 1 [chan receive]: |
Please provide your Also note that you don't need to run the tests to build tip - you could use |
C:\Users\rajender\go-contrib\go\src>go env |
building go1.9.2 also have same errors and some more. Full output: http://text-share.com/view/c8ae4745 |
@rajender quite a few tests fail. I am not surprised that runtime.TestGdb* tests are not working. I have never tested them myself - I could not make gdb / pyhon runtime working. I suspect these are also skipped on all out builders. runtime and cmd/go run out of time. I wonder if your computer is slow. You can test my theory by running these tests individually. You should also have -v flag so you can see progress as each test will print "PASS" as they go. For example, run
and see if it is still going just before 3 minutes elapses. Some for runtime package. If your computer is slow, try and stop antivirus program temporarily - it helps for me a little. Not sure about net/http.TestTransportBodyReadError failure. Alex |
What is the status with 1.10.1? Thanks. |
They aren't skipped during
|
Change https://golang.org/cl/112895 mentions this issue: |
Change https://golang.org/cl/112896 mentions this issue: |
Change https://golang.org/cl/112915 mentions this issue: |
Note that compiler-rt/lib/tsan/go/build.bat has been broken since https://reviews.llvm.org/D28596 (git commit 6ef4606343358c8f0365f7741b5033c42fbabb0e), so we have to use an older version until it can be fixed. compiler-rt commit ae08a22cc215448aa3ad5a6fb099f6df77e9fa01 is the most recent one that builds, but it fails tests (golang/go#22687). Updates golang/go#24354. Updates golang/go#22687. Change-Id: I36ba47fc955111143707224068e687168dbda4ff Reviewed-on: https://go-review.googlesource.com/112895 Reviewed-by: Brad Fitzpatrick <[email protected]>
Updates #22687. Change-Id: Iedccd9d2416ae7150cd2febe81c8bc9493d8d65c Reviewed-on: https://go-review.googlesource.com/112915 Run-TryBot: Bryan C. Mills <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
Is there anything more to do here for 1.11? Thanks. |
No response to question as to whether there is anything else to do, so closing. |
The runtime-gdb.py script needs procid to be set in order to map a goroutine ID with an OS thread. The Go runtime is not currently setting that variable on Windows, so TestGdbPython (and friends) can't succeed. This CL initializes procid and unskips gdb tests on Windows. Fixes #22687 Updates #21380 Updates #22021 Change-Id: Icd1d9fc1764669ed1bf04f53d17fadfd24ac3f30 Reviewed-on: https://go-review.googlesource.com/c/go/+/470596 Reviewed-by: Alex Brainman <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Run-TryBot: Quim Muntal <[email protected]>
all.bat in windows 10 fails with following errors.
I am using go 1.9.2 to build go tip.
Link to all.bat full output: http://text-share.com/view/cc0f79eb
The text was updated successfully, but these errors were encountered: