(t *testing.T, topologyName string, networking integration.TestNetworking)
| 360 | } |
| 361 | |
| 362 | func startServerSubprocess(t *testing.T, topologyName string, networking integration.TestNetworking) func() error { |
| 363 | _, closeFn := startSubprocess(t, "server", networking.Server.Process.NetNS, []string{ |
| 364 | "--subprocess", |
| 365 | "--test-name=" + topologyName, |
| 366 | "--role=server", |
| 367 | "--server-listen-addr=" + networking.Server.ListenAddr, |
| 368 | }) |
| 369 | return closeFn |
| 370 | } |
| 371 | |
| 372 | func startSTUNSubprocess(t *testing.T, topologyName string, number int, stun integration.TestNetworkingSTUN) func() error { |
| 373 | _, closeFn := startSubprocess(t, "stun", stun.Process.NetNS, []string{ |
no test coverage detected