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.
This commit is contained in:
Alessandro Arzilli
2025-09-13 17:02:03 +02:00
committed by GitHub
parent 9d3106bdd9
commit 49d65b3f40

View File

@ -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 // TestUnattendedBreakpoint tests whether dlv will print a message to stderr when the client that sends continue is disconnected
// or not. // or not.
func TestUnattendedBreakpoint(t *testing.T) { func TestUnattendedBreakpoint(t *testing.T) {
t.Parallel()
const listenAddr = "127.0.0.1:40575" const listenAddr = "127.0.0.1:40575"
fixturePath := filepath.Join(protest.FindFixturesDir(), "panic.go") fixturePath := filepath.Join(protest.FindFixturesDir(), "panic.go")