mirror of
https://github.com/golang/go
synced 2024-11-07 23:56:16 -07:00
3a3b8164fd
Currently, the cmd/dist runs test cases in misc/cgo/testsantizers only when memeory sanitizer is supported, but the tsan tests in misc/cgo/testsanitizers do not require support for -msan option, which makes tsan tests can not be run on some unsupported -msan option platforms. Therefore, this patch moves the test constraints from cmd/dist to msan_test.go, so that the tsan tests in misc/cgo/testsanitizers can be run on any system where the C compiler supports -fsanitize=thread option. Change-Id: I779c92eedd0270050f1a0b1a69ecce50c3712bc9 Reviewed-on: https://go-review.googlesource.com/c/go/+/297774 Trust: fannie zhang <Fannie.Zhang@arm.com> Run-TryBot: fannie zhang <Fannie.Zhang@arm.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
86 lines
1.8 KiB
Go
86 lines
1.8 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 (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestShared(t *testing.T) {
|
|
t.Parallel()
|
|
requireOvercommit(t)
|
|
|
|
GOOS, err := goEnv("GOOS")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
GOARCH, err := goEnv("GOARCH")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
libExt := "so"
|
|
if GOOS == "darwin" {
|
|
libExt = "dylib"
|
|
}
|
|
|
|
cases := []struct {
|
|
src string
|
|
sanitizer string
|
|
}{
|
|
{
|
|
src: "msan_shared.go",
|
|
sanitizer: "memory",
|
|
},
|
|
{
|
|
src: "tsan_shared.go",
|
|
sanitizer: "thread",
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
tc := tc
|
|
name := strings.TrimSuffix(tc.src, ".go")
|
|
//The memory sanitizer tests require support for the -msan option.
|
|
if tc.sanitizer == "memory" && !mSanSupported(GOOS, GOARCH) {
|
|
t.Logf("skipping %s test on %s/%s; -msan option is not supported.", name, GOOS, GOARCH)
|
|
continue
|
|
}
|
|
t.Run(name, func(t *testing.T) {
|
|
t.Parallel()
|
|
config := configure(tc.sanitizer)
|
|
config.skipIfCSanitizerBroken(t)
|
|
|
|
dir := newTempDir(t)
|
|
defer dir.RemoveAll(t)
|
|
|
|
lib := dir.Join(fmt.Sprintf("lib%s.%s", name, libExt))
|
|
mustRun(t, config.goCmd("build", "-buildmode=c-shared", "-o", lib, srcPath(tc.src)))
|
|
|
|
cSrc := dir.Join("main.c")
|
|
if err := ioutil.WriteFile(cSrc, cMain, 0600); err != nil {
|
|
t.Fatalf("failed to write C source file: %v", err)
|
|
}
|
|
|
|
dstBin := dir.Join(name)
|
|
cmd, err := cc(config.cFlags...)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
cmd.Args = append(cmd.Args, config.ldFlags...)
|
|
cmd.Args = append(cmd.Args, "-o", dstBin, cSrc, lib)
|
|
mustRun(t, cmd)
|
|
|
|
cmd = hangProneCmd(dstBin)
|
|
replaceEnv(cmd, "LD_LIBRARY_PATH", ".")
|
|
mustRun(t, cmd)
|
|
})
|
|
}
|
|
}
|