summaryrefslogtreecommitdiffstats
path: root/recipes-containers/netavark/files/tests.patch
blob: c4b3618ff2ed6d73c096b82295d43382c88a0af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Upstream-Status: Pending

diff --git a/test/helpers.bash b/test/helpers.bash
index 89866ec..017b2b5 100644
--- a/test/helpers.bash
+++ b/test/helpers.bash
@@ -552,10 +552,10 @@ function run_nc_test() {
     fi
 
     nsenter -n -t "${CONTAINER_NS_PIDS[$container_ns]}" timeout --foreground -v --kill=10 5 \
-        nc $nc_common_args -l -p $container_port &>"$NETAVARK_TMPDIR/nc-out" <$stdin &
+        ncat $nc_common_args -l -p $container_port &>"$NETAVARK_TMPDIR/nc-out" <$stdin &
 
     data=$(random_string)
-    run_in_host_netns nc $nc_common_args $connect_ip $host_port <<<"$data"
+    run_in_host_netns ncat $nc_common_args $connect_ip $host_port <<<"$data"
 
     got=$(cat "$NETAVARK_TMPDIR/nc-out")
     assert "$got" == "$data" "ncat received data"