What version of Go are you using (go version)?
$ go version
go1.15.6 linux/amd64
Does this issue reproduce with the latest release?
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/agus/.cache/go-build"
GOENV="/home/agus/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOINSECURE=""
GOMODCACHE="/home/agus/go/pkg/mod"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/agus/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build854558968=/tmp/go-build -gno-record-gcc-switches"
What did you do?
As per the guide "Testable examples in Go", I wrote a test file example_test.go inside an empty directory as the following:
package test1_test
import "fmt"
func Example() {
fmt.Println(1)
fmt.Println("\t\tA")
// Output:
/*1
A*/
}
Run go fmt and then go test:
What did you expect to see?
$ go test
PASS
ok _/home/agus/code/bugreproduce/gorunnableexample 0.002s
What did you see instead?
After running go fmt (see on playground) , the program becomes:
package test1_test
import "fmt"
func Example() {
fmt.Println(1)
fmt.Println("\t\tA")
// Output:
/* 1
A*/
}
The change of indentation of the line A* seems to make the test fail:
$ go test
--- FAIL: Example (0.00s)
got:
1
A
want:
1
A
FAIL
exit status 1
FAIL _/home/agus/code/bugreproduce/gorunnableexample 0.002s
Relevant issues & workarounds:
#41980
#5128 (comment)
#6416
The problem can be worked around by using inline comments (//), which don't depend on formatting. This runs ok before and after gofmt:
package test1_test
import "fmt"
func Example() {
fmt.Println(1)
fmt.Println("\t\tA")
// Output:
// 1
// A
}
However, this isn't satisfactory because it would make very difficult to check output longer that a couple of lines.
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
As per the guide "Testable examples in Go", I wrote a test file
example_test.goinside an empty directory as the following:Run
go fmtand thengo test:What did you expect to see?
What did you see instead?
After running
go fmt(see on playground) , the program becomes:The change of indentation of the line
A*seems to make the test fail:Relevant issues & workarounds:
#41980
#5128 (comment)
#6416
The problem can be worked around by using inline comments (
//), which don't depend on formatting. This runs ok before and after gofmt:However, this isn't satisfactory because it would make very difficult to check output longer that a couple of lines.