cmd/dlv: disable TestTraceMultipleGoroutines on FreeBSD (#3144)
This test seems to fail frequently on FreeBSD.
This commit is contained in:
parent
6bda7085c7
commit
70b8a78d04
@ -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)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user