diff options
author | 2024-10-17 11:45:45 +0200 | |
---|---|---|
committer | 2024-10-22 13:33:47 +0200 | |
commit | 0e07d5dbfbd9b0441ae4ec07a2a72738121356e2 (patch) | |
tree | 2b0e323add7d8e404db8a75d04cfe59f1087e123 /tools/testing/selftests/net/forwarding/lib.sh | |
parent | selftests: forwarding: Add a fallback cleanup() (diff) | |
download | wireguard-linux-0e07d5dbfbd9b0441ae4ec07a2a72738121356e2.tar.xz wireguard-linux-0e07d5dbfbd9b0441ae4ec07a2a72738121356e2.zip |
selftests: forwarding: lib: Allow passing PID to stop_traffic()
Now that it is possible to schedule a deferral of stop_traffic() right
after the traffic is started, we do not have to rely on the %% magic to
kill the background process that was started last. Instead we can just give
the PID explicitly. This makes it possible to start other background
processes after the traffic is started without confusing the cleanup.
Signed-off-by: Petr Machata <petrm@nvidia.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | tools/testing/selftests/net/forwarding/lib.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/forwarding/lib.sh b/tools/testing/selftests/net/forwarding/lib.sh index 76e6d7698caf..89c25f72b10c 100644 --- a/tools/testing/selftests/net/forwarding/lib.sh +++ b/tools/testing/selftests/net/forwarding/lib.sh @@ -1768,8 +1768,10 @@ start_tcp_traffic() stop_traffic() { + local pid=${1-%%}; shift + # Suppress noise from killing mausezahn. - { kill %% && wait %%; } 2>/dev/null + { kill $pid && wait $pid; } 2>/dev/null } declare -A cappid |