Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestIssue54968 (0.09 sec)

  1. src/debug/buildinfo/buildinfo_test.go

    	f.Fuzz(func(t *testing.T, input []byte) {
    		buildinfo.Read(bytes.NewReader(input))
    	})
    }
    
    // TestIssue54968 is a regression test for golang.org/issue/54968.
    //
    // The cause of issue 54968 is when the first buildInfoMagic is invalid, it
    // enters an infinite loop.
    func TestIssue54968(t *testing.T) {
    	t.Parallel()
    
    	const (
    		paddingSize    = 200
    		buildInfoAlign = 16
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top