mirror of
https://github.com/golang/go
synced 2024-11-08 15:16:25 -07:00
d4ff25ac69
Some tests in misc/cgo/testsanitizers had been disabled on ppc64le until recently, due to an intermittent error in the tsan tests, with the goal of trying to understand the failure. After further investigation, I found that the code for tsan within gcc does not work consistently when ASLR is enabled on ppc64le. A fix for that problem was integrated in gcc 9. This adds a check to testsanitizers to determine the gcc compiler version on ppc64le and skip the test if the version is too old. A similar check is needed for asan too. Updates #54645 Change-Id: I70717d1aa9e967cf1e871566e72b3862b91fea3f Reviewed-on: https://go-review.googlesource.com/c/go/+/425355 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Archana Ravindar <aravind5@in.ibm.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Run-TryBot: Lynn Boger <laboger@linux.vnet.ibm.com>
70 lines
1.5 KiB
Go
70 lines
1.5 KiB
Go
// Copyright 2017 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package sanitizers_test
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestTSAN(t *testing.T) {
|
|
goos, err := goEnv("GOOS")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
goarch, err := goEnv("GOARCH")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
// The msan tests require support for the -msan option.
|
|
if !compilerRequiredTsanVersion(goos, goarch) {
|
|
t.Skipf("skipping on %s/%s; compiler version for -tsan option is too old.", goos, goarch)
|
|
}
|
|
|
|
t.Parallel()
|
|
requireOvercommit(t)
|
|
config := configure("thread")
|
|
config.skipIfCSanitizerBroken(t)
|
|
|
|
mustRun(t, config.goCmd("build", "std"))
|
|
|
|
cases := []struct {
|
|
src string
|
|
needsRuntime bool
|
|
}{
|
|
{src: "tsan.go"},
|
|
{src: "tsan2.go"},
|
|
{src: "tsan3.go"},
|
|
{src: "tsan4.go"},
|
|
{src: "tsan5.go", needsRuntime: true},
|
|
{src: "tsan6.go", needsRuntime: true},
|
|
{src: "tsan7.go", needsRuntime: true},
|
|
{src: "tsan8.go"},
|
|
{src: "tsan9.go"},
|
|
{src: "tsan10.go", needsRuntime: true},
|
|
{src: "tsan11.go", needsRuntime: true},
|
|
{src: "tsan12.go", needsRuntime: true},
|
|
}
|
|
for _, tc := range cases {
|
|
tc := tc
|
|
name := strings.TrimSuffix(tc.src, ".go")
|
|
t.Run(name, func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
dir := newTempDir(t)
|
|
defer dir.RemoveAll(t)
|
|
|
|
outPath := dir.Join(name)
|
|
mustRun(t, config.goCmd("build", "-o", outPath, srcPath(tc.src)))
|
|
|
|
cmd := hangProneCmd(outPath)
|
|
if tc.needsRuntime {
|
|
config.skipIfRuntimeIncompatible(t)
|
|
}
|
|
mustRun(t, cmd)
|
|
})
|
|
}
|
|
}
|