Skip to content

Commit

Permalink
Merge pull request #1247 from microsoft/dev/auto-sync/microsoft/main
Browse files Browse the repository at this point in the history
Update submodule to latest `master` in `microsoft/main`
  • Loading branch information
microsoft-golang-review-bot authored Jun 13, 2024
2 parents 5629dce + 6b004de commit 1c7caa3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go
Submodule go updated 77 files
+7 −0 doc/godebug.md
+13 −3 doc/next/5-toolchain.md
+5 −5 doc/next/6-stdlib/3-iter.md
+0 −0 doc/next/6-stdlib/4-structs.md
+3 −0 doc/next/6-stdlib/99-minor/net/67925.md
+3 −3 doc/next/6-stdlib/99-minor/reflect/61308.md
+15 −2 doc/next/7-ports.md
+0 −6 doc/next/9-todo.md
+9 −1 src/cmd/compile/internal/devirtualize/pgo.go
+9 −0 src/cmd/compile/internal/noder/unified.go
+12 −1 src/cmd/compile/internal/pgoir/irgraph.go
+1 −1 src/cmd/compile/internal/ssa/_gen/PPC64.rules
+88 −24 src/cmd/compile/internal/ssa/debug.go
+3 −0 src/cmd/compile/internal/ssa/func.go
+10 −0 src/cmd/compile/internal/ssa/rewrite.go
+4 −4 src/cmd/compile/internal/ssa/rewritePPC64.go
+1 −0 src/cmd/compile/internal/ssagen/ssa.go
+51 −0 src/cmd/compile/internal/syntax/issues_test.go
+2 −1 src/cmd/compile/internal/syntax/positions.go
+1 −1 src/cmd/compile/internal/types2/api.go
+1 −1 src/cmd/compile/internal/types2/unify.go
+3 −1 src/cmd/go/alldocs.go
+1 −1 src/cmd/go/internal/help/helpdoc.go
+2 −0 src/cmd/go/internal/modget/get.go
+5 −8 src/cmd/go/internal/work/exec.go
+14 −0 src/cmd/go/testdata/script/build_repeated_godebug_issue62346.txt
+8 −1 src/cmd/go/testdata/script/env_changed.txt
+28 −0 src/cmd/go/testdata/script/test_fuzz_cgo.txt
+3 −1 src/cmd/link/internal/ld/data.go
+1 −1 src/crypto/tls/bogo_shim_test.go
+1 −0 src/crypto/tls/tls.go
+1 −1 src/go/types/unify.go
+1 −0 src/internal/godebugs/table.go
+5 −0 src/internal/syscall/unix/constants.go
+14 −0 src/internal/syscall/unix/nofollow_bsd.go
+10 −0 src/internal/syscall/unix/nofollow_netbsd.go
+22 −0 src/internal/syscall/unix/nofollow_posix.go
+14 −0 src/internal/types/testdata/fixedbugs/issue67872.go
+94 −15 src/iter/iter.go
+242 −0 src/iter/pull_test.go
+18 −10 src/net/dnsclient_unix.go
+29 −10 src/net/dnsclient_unix_test.go
+18 −0 src/net/http/serve_test.go
+3 −2 src/net/http/server.go
+6 −0 src/net/net.go
+234 −11 src/os/exec.go
+10 −6 src/os/exec/exec.go
+29 −0 src/os/exec/exec_test.go
+13 −0 src/os/exec_linux.go
+9 −0 src/os/exec_nohandle.go
+16 −7 src/os/exec_plan9.go
+6 −6 src/os/exec_posix.go
+77 −0 src/os/exec_test.go
+76 −40 src/os/exec_unix.go
+30 −0 src/os/exec_unix_test.go
+31 −14 src/os/exec_windows.go
+6 −1 src/os/export_linux_test.go
+38 −30 src/os/pidfd_linux.go
+5 −3 src/os/pidfd_linux_test.go
+5 −5 src/os/pidfd_other.go
+1 −1 src/os/removeall_at.go
+1 −1 src/os/signal/doc.go
+12 −12 src/os/user/cgo_lookup_unix.go
+1 −1 src/runtime/coro.go
+4 −0 src/runtime/metrics/doc.go
+3 −1 src/sync/atomic/doc.go
+2 −1 src/sync/cond.go
+3 −1 src/sync/map.go
+3 −1 src/sync/mutex.go
+3 −1 src/sync/once.go
+3 −1 src/sync/pool.go
+3 −1 src/sync/rwmutex.go
+3 −1 src/sync/waitgroup.go
+0 −11 src/syscall/rlimit.go
+4 −0 src/time/format.go
+1 −1 src/time/tick_test.go
+4 −1 test/codegen/bits.go
4 changes: 2 additions & 2 deletions patches/0008-Update-default-go.env.patch
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ index 6ff2b921d464bc..4aca2ff2c63dbc 100644
-GOTOOLCHAIN=auto
+GOTOOLCHAIN=local
diff --git a/src/cmd/go/testdata/script/env_changed.txt b/src/cmd/go/testdata/script/env_changed.txt
index a3d368cd39e480..2253bb202d8397 100644
index 37d6571938cba6..204c39c5b18891 100644
--- a/src/cmd/go/testdata/script/env_changed.txt
+++ b/src/cmd/go/testdata/script/env_changed.txt
@@ -1,5 +1,8 @@
Expand All @@ -33,6 +33,6 @@ index a3d368cd39e480..2253bb202d8397 100644
+# See https://github.com/golang/go/issues/67793
+skip 'test relies on the standard go.env file, but Microsoft Go has a modified go.env file'
+
env GOROOT=./a
env GOTOOLCHAIN=local
env GOSUMDB=nodefault
env GOPROXY=nodefault

0 comments on commit 1c7caa3

Please sign in to comment.