From 70b8a78d04426761cb35f937a1425bdeeacdca4c Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Thu, 29 Sep 2022 19:08:46 +0200 Subject: [PATCH] cmd/dlv: disable TestTraceMultipleGoroutines on FreeBSD (#3144) This test seems to fail frequently on FreeBSD. --- cmd/dlv/dlv_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/dlv/dlv_test.go b/cmd/dlv/dlv_test.go index 9c4efd4d..562ade5e 100644 --- a/cmd/dlv/dlv_test.go +++ b/cmd/dlv/dlv_test.go @@ -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)