Skip to content

Commit f923374

Browse files
committed
runtime/race: fix ppc64le build
The .syso test also fails for ppc64le. Not sure why. For now, just disable the test for that architecture. The test really only needs to run on a single builder of any arch. Change-Id: I346cdc01ada09d43c4c504fbc30be806f59d5422 Reviewed-on: https://go-review.googlesource.com/c/go/+/246358 Run-TryBot: Keith Randall <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent e49b230 commit f923374

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/runtime/race/syso_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build !android,!js
5+
// +build !android,!js,!ppc64le
66

7-
// Note: we don't run on Android because if there is any non-race test
8-
// file in this package, Android tries to link the .syso file into the
7+
// Note: we don't run on Android or ppc64 because if there is any non-race test
8+
// file in this package, the OS tries to link the .syso file into the
99
// test (even when we're not in race mode), which fails. I'm not sure
1010
// why, but easiest to just punt - as long as a single builder runs
1111
// this test, we're good.

0 commit comments

Comments
 (0)