diff options
| author | Lynn Boger <laboger@linux.vnet.ibm.com> | 2022-08-17 10:04:57 -0500 |
|---|---|---|
| committer | Lynn Boger <laboger@linux.vnet.ibm.com> | 2022-08-18 17:01:12 +0000 |
| commit | 03e1870b635dbfa54b6ee3624c435daf2a6b3b1f (patch) | |
| tree | 3dbb832b783ee12d56caf666d8b014d345eddd68 /src | |
| parent | b2c0417c429891b9c965abe1d09606b0dba00403 (diff) | |
| download | go-03e1870b635dbfa54b6ee3624c435daf2a6b3b1f.tar.xz | |
cmd/dist: enable testsanitizer test on ppc64le
Even though the -race option works for ppc64le, some of the
testsanitizer test have failed in the past on our builders. These
same failures can't be reproduced on other systems.
This is an experiment to re-enable this test on ppc64le to see if
it still fails on the builders.
Updates #45040
Change-Id: I0729bec5864e6c4cc752968485e89179df027063
Reviewed-on: https://go-review.googlesource.com/c/go/+/424534
Run-TryBot: Lynn Boger <laboger@linux.vnet.ibm.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Archana Ravindar <aravind5@in.ibm.com>
Reviewed-by: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/cmd/dist/test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 1c22568ebd..759377ffa5 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -839,9 +839,8 @@ func (t *tester) registerTests() { if gohostos == "linux" && goarch == "amd64" { t.registerTest("testasan", "../misc/cgo/testasan", "go", "run", ".") } - if goos == "linux" && goarch != "ppc64le" { + if goos == "linux" { // because syscall.SysProcAttr struct used in misc/cgo/testsanitizers is only built on linux. - // Some inconsistent failures happen on ppc64le so disable for now. t.registerHostTest("testsanitizers", "../misc/cgo/testsanitizers", "misc/cgo/testsanitizers", ".") } if t.hasBash() && goos != "android" && !t.iOS() && gohostos != "windows" { |
