Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestASAN (0.07 sec)

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

    //go:build linux || (freebsd && amd64)
    
    package sanitizers_test
    
    import (
    	"fmt"
    	"internal/platform"
    	"internal/testenv"
    	"strings"
    	"testing"
    )
    
    func TestASAN(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: Fri May 19 01:37:31 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top