Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/reflect/all_test.go

    		t.Skip("skipping malloc count in short mode")
    	}
    	v := ValueOf(S{})
    	if allocs := testing.AllocsPerRun(100, func() { v.Interface() }); allocs > 0 {
    		t.Error("allocs:", allocs)
    	}
    }
    
    func TestAllocsInterfaceSmall(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	v := ValueOf(int64(0))
    	if allocs := testing.AllocsPerRun(100, func() { v.Interface() }); allocs > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top