2022-08-09 14:44:47 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
func (s *TapSuite) TestLinuxIperf() {
|
|
|
|
t := s.T()
|
|
|
|
clnCh := make(chan error)
|
|
|
|
stopServerCh := make(chan struct{})
|
|
|
|
srvCh := make(chan error, 1)
|
|
|
|
defer func() {
|
|
|
|
stopServerCh <- struct{}{}
|
|
|
|
}()
|
|
|
|
|
|
|
|
go StartServerApp(srvCh, stopServerCh, nil)
|
|
|
|
err := <-srvCh
|
2022-12-06 15:38:05 +01:00
|
|
|
s.assertNil(err)
|
2022-08-09 14:44:47 +00:00
|
|
|
t.Log("server running")
|
|
|
|
go StartClientApp(nil, clnCh)
|
|
|
|
t.Log("client running")
|
|
|
|
err = <-clnCh
|
2022-12-06 15:38:05 +01:00
|
|
|
s.assertNil(err)
|
2022-08-09 14:44:47 +00:00
|
|
|
t.Log("Test completed")
|
|
|
|
}
|