Skip to content

Commit

Permalink
Update submodule to latest master (092d18b3): internal/coverage: use …
Browse files Browse the repository at this point in the history
…128-bit FNV-1a hash instead of MD5
  • Loading branch information
microsoft-golang-bot committed Oct 7, 2024
1 parent e03b0e6 commit 90deb51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go
Submodule go updated 62 files
+5 −0 doc/godebug.md
+1 −0 src/cmd/cgo/internal/testerrors/errors_test.go
+12 −0 src/cmd/cgo/internal/testerrors/testdata/issue69176.go
+16 −2 src/cmd/cgo/out.go
+6 −3 src/cmd/covdata/metamerge.go
+5 −2 src/cmd/go/go_test.go
+4 −19 src/crypto/rand/example_test.go
+83 −0 src/crypto/rand/internal/seccomp/seccomp_linux.go
+13 −0 src/crypto/rand/internal/seccomp/seccomp_unsupported.go
+102 −25 src/crypto/rand/rand.go
+9 −0 src/crypto/rand/rand_aix.go
+22 −0 src/crypto/rand/rand_arc4random.go
+0 −75 src/crypto/rand/rand_batched_test.go
+0 −19 src/crypto/rand/rand_darwin.go
+0 −14 src/crypto/rand/rand_getentropy.go
+45 −29 src/crypto/rand/rand_getrandom.go
+12 −27 src/crypto/rand/rand_js.go
+67 −0 src/crypto/rand/rand_linux_test.go
+24 −0 src/crypto/rand/rand_netbsd.go
+19 −27 src/crypto/rand/rand_plan9.go
+191 −4 src/crypto/rand/rand_test.go
+0 −87 src/crypto/rand/rand_unix.go
+2 −14 src/crypto/rand/rand_wasip1.go
+3 −15 src/crypto/rand/rand_windows.go
+3 −2 src/crypto/rand/util.go
+4 −1 src/go/build/deps_test.go
+2 −2 src/internal/coverage/cfile/emit.go
+4 −2 src/internal/coverage/decodemeta/decodefile.go
+3 −3 src/internal/coverage/encodemeta/encode.go
+4 −2 src/internal/coverage/encodemeta/encodefile.go
+16 −12 src/internal/coverage/pods/pods_test.go
+1 −0 src/internal/godebugs/table.go
+1 −3 src/internal/syscall/unix/arandom_netbsd.go
+23 −0 src/internal/syscall/unix/arc4random_openbsd.go
+2 −0 src/internal/syscall/unix/asm_openbsd.s
+0 −17 src/internal/syscall/unix/getentropy_openbsd.go
+0 −25 src/internal/syscall/unix/getentropy_openbsd_mips64.go
+1 −0 src/net/http/clientserver_test.go
+4 −0 src/runtime/metrics/doc.go
+2 −6 src/runtime/os_darwin.go
+10 −2 src/runtime/os_linux.go
+3 −0 src/runtime/os_openbsd.go
+5 −0 src/runtime/panic.go
+33 −4 src/runtime/rand.go
+10 −0 src/runtime/sys_darwin.go
+6 −0 src/runtime/sys_darwin_amd64.s
+6 −0 src/runtime/sys_darwin_arm64.s
+2 −3 src/runtime/traceback.go
+0 −1 src/syscall/linkname_openbsd.go
+0 −1 src/syscall/syscall_openbsd_libc.go
+0 −20 src/syscall/zsyscall_openbsd_386.go
+0 −2 src/syscall/zsyscall_openbsd_386.s
+0 −20 src/syscall/zsyscall_openbsd_amd64.go
+0 −2 src/syscall/zsyscall_openbsd_amd64.s
+0 −20 src/syscall/zsyscall_openbsd_arm.go
+0 −2 src/syscall/zsyscall_openbsd_arm.s
+0 −20 src/syscall/zsyscall_openbsd_arm64.go
+0 −2 src/syscall/zsyscall_openbsd_arm64.s
+0 −20 src/syscall/zsyscall_openbsd_ppc64.go
+0 −3 src/syscall/zsyscall_openbsd_ppc64.s
+0 −20 src/syscall/zsyscall_openbsd_riscv64.go
+0 −2 src/syscall/zsyscall_openbsd_riscv64.s

0 comments on commit 90deb51

Please sign in to comment.