var flagAll … // TestReadFile confirms that ReadFile can read build information from binaries // on supported target platforms. It builds a trivial binary on the current // platforms (or all platforms if -all is set) in various configurations and // checks that build information can or cannot be read. func TestReadFile(t *testing.T) { … } // Test117 verifies that parsing of the old, pre-1.18 format works. func Test117(t *testing.T) { … } // TestNotGo verifies that parsing of a non-Go binary returns the proper error. func TestNotGo(t *testing.T) { … } // FuzzIssue57002 is a regression test for golang.org/issue/57002. // // The cause of issue 57002 is when pointerSize is not being checked, // the read can panic with slice bounds out of range func FuzzIssue57002(f *testing.F) { … } // 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) { … } func FuzzRead(f *testing.F) { … }