aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRongrong <rongrong-for-oss@oss.cipunited.com>2026-02-10 13:57:41 +0800
committerCarlos Amedee <carlos@golang.org>2026-03-20 09:40:56 -0700
commit3bf3014fe7ffc030c0d39fa384e0436db7bc0551 (patch)
tree51f2cac8663befe41a1dea2f1d1acd70b7ec3b1f
parente29f35511d1f15b5eab0fefabd7b9372866b1641 (diff)
downloadgo-3bf3014fe7ffc030c0d39fa384e0436db7bc0551.tar.xz
[release-branch.go1.26] test/convert5: skip mipsle
It's broken on 32-bit architectures, and mips (be) has been in the skip list. mipsle is somehow forgotten, so add it. Updates #67304 Fixes #77836 Change-Id: I6d12185c21c37d0524d245e0a7025e30add1fb6b Reviewed-on: https://go-review.googlesource.com/c/go/+/743740 Reviewed-by: Julian Zhu <jz531210@gmail.com> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> (cherry picked from commit d3ddc4854429185e6e06ca1f7628bb790404abb5) Reviewed-on: https://go-review.googlesource.com/c/go/+/749620 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
-rw-r--r--test/convert5.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/convert5.go b/test/convert5.go
index df247ca0b9..6a787071de 100644
--- a/test/convert5.go
+++ b/test/convert5.go
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build !wasm && !386 && !arm && !mips
+//go:build !wasm && !386 && !arm && !mips && !mipsle
// TODO fix this to work for wasm and 32-bit architectures.
// Doing more than this, however, expands the change.