cmd/link: skip TestAbstractOriginSanity

CL 743860 broke -l=4 builds by introducing an allocation in
runtime.printfloat64. Since -l=4 is very rarely used, skip the one test
using it until it is fixed.

Updates #79547

Change-Id: Id180cfc66a76c70fa980b3efeb1440156a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/780760
LUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
This commit is contained in:
Michael Pratt 2026-05-20 16:00:13 -04:00 committed by Gopher Robot
parent 05ab7b8da5
commit 3652f299a8

View file

@ -828,6 +828,9 @@ func TestAbstractOriginSanity(t *testing.T) {
t.Skip("skipping test in short mode.")
}
// TODO(go.dev/issue/79547): -l=4 builds are temporarily broken.
t.Skip("-l=4 builds are currently broken because they introduce an allocation in runtime.printfloat64")
mustHaveDWARF(t)
abstractOriginSanity(t, "testdata/httptest", OptAllInl4)
}