Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestTSAN (0.2 sec)

  1. src/cmd/cgo/internal/testsanitizers/tsan_test.go

    // license that can be found in the LICENSE file.
    
    //go:build linux || (freebsd && amd64)
    
    package sanitizers_test
    
    import (
    	"internal/testenv"
    	"strings"
    	"testing"
    )
    
    func TestTSAN(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	goos, err := goEnv("GOOS")
    	if err != nil {
    		t.Fatal(err)
    	}
    	goarch, err := goEnv("GOARCH")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top