Skip to content

Commit d4b2638

Browse files
committed
all: go fmt std cmd (but revert vendor)
Make all our package sources use Go 1.17 gofmt format (adding //go:build lines). Part of //go:build change (#41184). See https://golang.org/design/draft-gobuild Change-Id: Ia0534360e4957e58cd9a18429c39d0e32a6addb4 Reviewed-on: https://go-review.googlesource.com/c/go/+/294430 Trust: Russ Cox <[email protected]> Run-TryBot: Russ Cox <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Jason A. Donenfeld <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 0625460 commit d4b2638

File tree

826 files changed

+883
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

826 files changed

+883
-106
lines changed

src/archive/tar/stat_actime1.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build aix || linux || dragonfly || openbsd || solaris
56
// +build aix linux dragonfly openbsd solaris
67

78
package tar

src/archive/tar/stat_actime2.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build darwin || freebsd || netbsd
56
// +build darwin freebsd netbsd
67

78
package tar

src/archive/tar/stat_unix.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build aix || linux || darwin || dragonfly || freebsd || openbsd || netbsd || solaris
56
// +build aix linux darwin dragonfly freebsd openbsd netbsd solaris
67

78
package tar

src/bytes/boundary_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44
//
5+
//go:build linux
56
// +build linux
67

78
package bytes_test

src/cmd/api/run.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build ignore
56
// +build ignore
67

78
// The run program is invoked via the dist tool.

src/cmd/compile/internal/gc/bootstrap.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !go1.8
56
// +build !go1.8
67

78
package gc

src/cmd/compile/internal/gc/pprof.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build go1.8
56
// +build go1.8
67

78
package gc

src/cmd/compile/internal/gc/trace.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build go1.7
56
// +build go1.7
67

78
package gc

src/cmd/compile/internal/ir/mknode.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build ignore
56
// +build ignore
67

78
package main

src/cmd/compile/internal/logopt/escape.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build go1.8
56
// +build go1.8
67

78
package logopt

src/cmd/compile/internal/logopt/escape_bootstrap.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !go1.8
56
// +build !go1.8
67

78
package logopt

src/cmd/compile/internal/ssa/flags_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build amd64 || arm64
56
// +build amd64 arm64
67

78
package ssa

src/cmd/compile/internal/typecheck/mapfile_mmap.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
56
// +build darwin dragonfly freebsd linux netbsd openbsd
67

78
package typecheck

src/cmd/compile/internal/typecheck/mapfile_read.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd
56
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd
67

78
package typecheck

src/cmd/compile/internal/typecheck/mkbuiltin.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build ignore
56
// +build ignore
67

78
// Generate builtin.go from builtin/runtime.go.

src/cmd/compile/internal/types2/example_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Only run where builders (build.golang.org) have
77
// access to compiled packages for import.
88
//
9+
//go:build !arm && !arm64
910
// +build !arm,!arm64
1011

1112
package types2_test

src/cmd/dist/sys_default.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !windows
56
// +build !windows
67

78
package main

src/cmd/dist/test_linux.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build linux
56
// +build linux
67

78
package main

src/cmd/dist/util_gc.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !gccgo
56
// +build !gccgo
67

78
package main

src/cmd/dist/util_gccgo.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build gccgo
56
// +build gccgo
67

78
package main

src/cmd/go/go11.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build go1.1
56
// +build go1.1
67

78
package main

src/cmd/go/go_unix_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
56
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
67

78
package main_test

src/cmd/go/internal/base/signal_notunix.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build plan9 || windows
56
// +build plan9 windows
67

78
package base

src/cmd/go/internal/base/signal_unix.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build aix || darwin || dragonfly || freebsd || js || linux || netbsd || openbsd || solaris
56
// +build aix darwin dragonfly freebsd js linux netbsd openbsd solaris
67

78
package base

src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build aix || (solaris && !illumos)
56
// +build aix solaris,!illumos
67

78
// This code implements the filelock API using POSIX 'fcntl' locks, which attach

src/cmd/go/internal/lockedfile/internal/filelock/filelock_other.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !plan9 && !solaris && !windows
56
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!plan9,!solaris,!windows
67

78
package filelock

src/cmd/go/internal/lockedfile/internal/filelock/filelock_plan9.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build plan9
56
// +build plan9
67

78
package filelock

src/cmd/go/internal/lockedfile/internal/filelock/filelock_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !js && !plan9
56
// +build !js,!plan9
67

78
package filelock_test

src/cmd/go/internal/lockedfile/internal/filelock/filelock_unix.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
56
// +build darwin dragonfly freebsd illumos linux netbsd openbsd
67

78
package filelock

src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build windows
56
// +build windows
67

78
package filelock

src/cmd/go/internal/lockedfile/lockedfile_filelock.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !plan9
56
// +build !plan9
67

78
package lockedfile

src/cmd/go/internal/lockedfile/lockedfile_plan9.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build plan9
56
// +build plan9
67

78
package lockedfile

src/cmd/go/internal/lockedfile/lockedfile_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// js does not support inter-process file locking.
6+
//go:build !js
67
// +build !js
78

89
package lockedfile_test

src/cmd/go/internal/lockedfile/transform_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// js does not support inter-process file locking.
6+
//go:build !js
67
// +build !js
78

89
package lockedfile_test

src/cmd/go/internal/modfetch/bootstrap.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build cmd_go_bootstrap
56
// +build cmd_go_bootstrap
67

78
package modfetch

src/cmd/go/internal/modfetch/codehost/shell.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build ignore
56
// +build ignore
67

78
// Interactive debugging shell for codehost.Repo implementations.

src/cmd/go/internal/modfetch/sumdb.go

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
// Go checksum database lookup
66

7+
//go:build !cmd_go_bootstrap
78
// +build !cmd_go_bootstrap
89

910
package modfetch

src/cmd/go/internal/modload/stat_openfile.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build (js && wasm) || plan9
56
// +build js,wasm plan9
67

78
// On plan9, per http://9p.io/magic/man2html/2/access: “Since file permissions

src/cmd/go/internal/modload/stat_unix.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
56
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
67

78
package modload

src/cmd/go/internal/modload/stat_windows.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build windows
56
// +build windows
67

78
package modload

src/cmd/go/internal/renameio/renameio_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !plan9
56
// +build !plan9
67

78
package renameio

src/cmd/go/internal/renameio/umask_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !plan9 && !windows && !js
56
// +build !plan9,!windows,!js
67

78
package renameio

src/cmd/go/internal/robustio/robustio_flaky.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build windows || darwin
56
// +build windows darwin
67

78
package robustio

src/cmd/go/internal/robustio/robustio_other.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !windows && !darwin
56
// +build !windows,!darwin
67

78
package robustio

src/cmd/go/internal/test/genflags.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build ignore
56
// +build ignore
67

78
package main

src/cmd/go/internal/web/bootstrap.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build cmd_go_bootstrap
56
// +build cmd_go_bootstrap
67

78
// This code is compiled only into the bootstrap 'go' binary.

src/cmd/go/internal/web/http.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !cmd_go_bootstrap
56
// +build !cmd_go_bootstrap
67

78
// This code is compiled into the real 'go' binary, but it is not

src/cmd/go/internal/web/url_other.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !windows
56
// +build !windows
67

78
package web

src/cmd/go/internal/web/url_other_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !windows
56
// +build !windows
67

78
package web

src/cmd/go/internal/work/testgo.go

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
// This file contains extra hooks for testing the go command.
66

7+
//go:build testgo
78
// +build testgo
89

910
package work

0 commit comments

Comments
 (0)