Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for no_memprofile (0.18 sec)

  1. src/cmd/link/internal/ld/ld_test.go

    func TestMemProfileCheck(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	tests := []struct {
    		name    string
    		prog    string
    		wantOut string
    	}{
    		{
    			"no_memprofile",
    			`
    package main
    import "runtime"
    func main() {
    	println(runtime.MemProfileRate)
    }
    `,
    			"0",
    		},
    		{
    			"with_memprofile",
    			`
    package main
    import "runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top