Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMSAN (0.17 sec)

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

    // license that can be found in the LICENSE file.
    
    //go:build linux || (freebsd && amd64)
    
    package sanitizers_test
    
    import (
    	"internal/platform"
    	"internal/testenv"
    	"strings"
    	"testing"
    )
    
    func TestMSAN(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 Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top