From 49d65b3f40c2a037e36da5b4ce7283f3ee9112ee Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Sat, 13 Sep 2025 17:02:03 +0200 Subject: [PATCH] dlv_test: disable parallelization on TestUnattendedBreakpoint (#4145) After the parallellization this test, for some reason, gets stuck specifically on FreeBSD. Remove the call to t.Parallel. --- cmd/dlv/dlv_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/dlv/dlv_test.go b/cmd/dlv/dlv_test.go index ef0b78d9..fecda952 100644 --- a/cmd/dlv/dlv_test.go +++ b/cmd/dlv/dlv_test.go @@ -189,7 +189,6 @@ func TestOutput(t *testing.T) { // TestUnattendedBreakpoint tests whether dlv will print a message to stderr when the client that sends continue is disconnected // or not. func TestUnattendedBreakpoint(t *testing.T) { - t.Parallel() const listenAddr = "127.0.0.1:40575" fixturePath := filepath.Join(protest.FindFixturesDir(), "panic.go")