What version of Go are you using (go version)?
$ go version
go version go1.13.7 darwin/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/yury/Library/Caches/go-build"
GOENV="/Users/yury/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/yury/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/Users/yury/go/src/github.com/orlangure/myproject/go.mod"
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 -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/p1/rjgq2gp55pj58ckbsn94yfz80000gn/T/go-build564127360=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
I wrote a function, a test for it, and TestMain to perform setup and teardown for testing this function:
main.go
package main
import "fmt"
func main() {
fmt.Println("vim-go")
}
func p() {
panic("foo")
}
p_test.go
package main
import "testing"
func TestP(t *testing.T) {
p()
}
main_test.go
package main
import (
"fmt"
"os"
"testing"
)
func TestMain(m *testing.M) {
os.Exit(testMain(m))
}
func testMain(m *testing.M) int {
setup()
defer teardown()
return m.Run()
}
func setup() {
fmt.Println("setting up")
}
func teardown() {
fmt.Println("tearing down")
}
What did you expect to see?
I expected to see "setting up" and "tearing down" at some point, and a panic "foo" message with a stack trace.
What did you see instead?
Only setup and panic output appeared:
setting up
--- FAIL: TestP (0.00s)
panic: foo [recovered]
panic: foo
goroutine 19 [running]:
testing.tRunner.func1(0xc0000b6100)
/usr/local/go/src/testing/testing.go:874 +0x3a3
panic(0x1111220, 0x116b4d0)
/usr/local/go/src/runtime/panic.go:679 +0x1b2
akeyless.io/akeyless-main-repo/go/src/t.p(...)
...
FAIL
The program probably called os.Exit at some point while running the tests, or panicked in a separate go routine with no way for me to recover. I would expect both setup and teardown functions to be called at some point.
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
I wrote a function, a test for it, and
TestMainto perform setup and teardown for testing this function:main.go
p_test.go
main_test.go
What did you expect to see?
I expected to see "setting up" and "tearing down" at some point, and a panic "foo" message with a stack trace.
What did you see instead?
Only setup and panic output appeared:
The program probably called
os.Exitat some point while running the tests, or panicked in a separate go routine with no way for me to recover. I would expect both setup and teardown functions to be called at some point.