cmd/dlv: disable TestTraceMultipleGoroutines on FreeBSD (#3144)

This test seems to fail frequently on FreeBSD.
This commit is contained in:
Alessandro Arzilli 2022-09-29 19:08:46 +02:00 committed by GitHub
parent 6bda7085c7
commit 70b8a78d04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1021,6 +1021,11 @@ func TestTrace(t *testing.T) {
}
func TestTraceMultipleGoroutines(t *testing.T) {
if runtime.GOOS == "freebsd" {
//TODO(aarzilli): investigate further when the FreeBSD backend is more stable.
t.Skip("temporarily disabled due to issues with FreeBSD in Delve and Go")
}
dlvbin, tmpdir := getDlvBin(t)
defer os.RemoveAll(tmpdir)