blob: 92a85cf6bbe28f9b6ee87cfa12a405b6c4cb5ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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
if err != nil {
t.Errorf("%v", err)
t.FailNow()
}
t.Log("server running")
go StartClientApp(nil, clnCh)
t.Log("client running")
err = <-clnCh
if err != nil {
s.Failf("client", "%v", err)
}
t.Log("Test completed")
}
|