You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: Fail early when iperf3 exits with non-0 code
stderr can be empty when iperf3 exits with non-0 code:
```
$ iperf3 -c 127.0.0.1
iperf3: error - unable to connect to server: Connection refused
$ iperf3 -c 127.0.0.1 >/dev/null
$ echo $?
1
```
To make it easier to debug iperf3-related issues, asserts the exit code
of iperf3 command is 0.
Signed-off-by: Takahiro Itazuri <[email protected]>
0 commit comments