-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/compile/internal/ssa: TestNexting/dlv-dbg-hist failing on linux-386-longtest builder because it tries to use an older version of dlv which only supports linux/amd64 #39309
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
Comments
I was looking up a reference for that, and learned that support for linux/386 was added to delve as recently as a few months ago in Delve 1.4.1 (see CHANGELOG and go-delve/delve#1884). The version of Delve currently available in the This test is completely skipped on 1.15 branch because it's flaky (see #37404, /cc @bcmills). As a result, it doesn't seem worth investing a lot in trying to fix this test on 386 in its current state. For now, I'll write a comment saying that the version of delve installed on |
Change https://golang.org/cl/237603 mentions this issue: |
@gopherbot Please consider for backport, this is a test skip for a test that is expected not to pass due to insufficient environment preconditions. This is to uncover additional test failures on the linux-386-longtest builder that would otherwise be masked. |
Backport issue(s) opened: #39561 (for 1.13), #39562 (for 1.14). Remember to create the cherry-pick CL(s) as soon as the patch is submitted to master, according to https://golang.org/wiki/MinorReleases. |
Change https://golang.org/cl/237619 mentions this issue: |
Change https://golang.org/cl/237617 mentions this issue: |
…th old Delve on linux/386 Support for linux/386 was added to Delve in version 1.4.1, but the version of Delve currently installed on the linux-386-longtest builder is 1.2.0. That isn't new enough, which causes the test to fail. Skip it on that builder until it can be made to work. The only reason it used to pass on the linux-386-longtest builder before is because that builder was misconfigured to run tests for linux/amd64. This was resolved in CL 234520. Also improve internal documentation and the text of skip reasons. For #39309. Fixes #39561. Change-Id: I395cb1f076e59dd3a3feb53e1dcdce5101e9a0f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/237617 Reviewed-by: David Chase <[email protected]>
…th old Delve on linux/386 Support for linux/386 was added to Delve in version 1.4.1, but the version of Delve currently installed on the linux-386-longtest builder is 1.2.0. That isn't new enough, which causes the test to fail. Skip it on that builder until it can be made to work. The only reason it used to pass on the linux-386-longtest builder before is because that builder was misconfigured to run tests for linux/amd64. This was resolved in CL 234520. Also improve internal documentation and the text of skip reasons. For #39309. Fixes #39562. Change-Id: I395cb1f076e59dd3a3feb53e1dcdce5101e9a0f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/237619 Reviewed-by: David Chase <[email protected]>
(Factoring out this specific problem from #37050.)
The TestNexting/dlv-dbg-hist test is failing on
linux-386-longtest
builder on release-branch.go1.14 and release-branch.go1.13:https://build.golang.org/?branch=release-branch.go1.14
https://build.golang.org/?branch=release-branch.go1.13
See #37050 (comment) and other comments for more details.
This is determined to be a problem of the test, because delve doesn't support linux/386 (according to #37050 (comment)), yet it's attempted to be used by the test.
To make progress, we need to decide how best to improve this test so it no longer fails.
(Note the test is flaky on linux/amd64 for unrelated reasons, and skipped on tip; that is tracked in issue #37404.)
/cc @dr2chase @cagedmantis @toothrot @andybons
The text was updated successfully, but these errors were encountered: