diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2025-03-12 16:26:57 +1100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2025-03-12 23:08:33 +0100 |
commit | 78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab (patch) | |
tree | 773f701d8a68431250242a0c6f5a86839eff9f1e | |
parent | 26df8a3608e7b006c00f44a9029bcadb6d5e4153 (diff) | |
download | passt-78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab.tar passt-78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab.tar.gz passt-78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab.tar.bz2 passt-78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab.tar.lz passt-78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab.tar.xz passt-78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab.tar.zst passt-78f1f0fdfc1831f2ca3a65c2cee98c44ff3c30ab.zip |
test/perf: Simplify iperf3 server lifetime management
After we start the iperf3 server in the background, we have a sleep to
make sure it's ready to receive connections. We can simplify this slightly
by using the -D option to have iperf3 background itself rather than
backgrounding it manually. That won't return until the server is ready to
use.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rwxr-xr-x | test/lib/test | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/lib/test b/test/lib/test index 758250a..7349674 100755 --- a/test/lib/test +++ b/test/lib/test @@ -20,10 +20,7 @@ test_iperf3s() { __sctx="${1}" __port="${2}" - pane_or_context_run_bg "${__sctx}" \ - 'iperf3 -s -p'${__port}' & echo $! > s.pid' \ - - sleep 1 # Wait for server to be ready + pane_or_context_run "${__sctx}" 'iperf3 -s -p'${__port}' -D -I s.pid' } # test_iperf3k() - Kill iperf3 server @@ -31,7 +28,7 @@ test_iperf3s() { test_iperf3k() { __sctx="${1}" - pane_or_context_run "${__sctx}" 'kill -INT $(cat s.pid); rm s.pid' + pane_or_context_run "${__sctx}" 'kill -INT $(cat s.pid)' sleep 1 # Wait for kernel to free up ports } |