From: Dave Wallace Date: Wed, 1 Nov 2023 03:20:47 +0000 (-0400) Subject: tests: fix UDP port range for mdata and bufmon X-Git-Tag: v24.06-rc0~177 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=6e66ea75a0ec9ce414e2563c6286a14ad3a58c01;p=vpp.git tests: fix UDP port range for mdata and bufmon - Use of well known UDP port numbers causes random failure of mdata and bufmon tests Type: test Change-Id: I21a01c54e5f166aea101d3caace85b53f3f7285d Signed-off-by: Dave Wallace --- diff --git a/test/test_bufmon.py b/test/test_bufmon.py index baa93740ac8..6d7f2f6da65 100644 --- a/test/test_bufmon.py +++ b/test/test_bufmon.py @@ -41,7 +41,7 @@ class TestBufmon(VppTestCase): p = ( Ether(dst=src_if.local_mac, src=src_if.remote_mac) / IP(src=src_if.remote_ip4, dst=dst_if.remote_ip4) - / UDP(sport=randint(1000, 2000), dport=5678) + / UDP(sport=randint(49152, 65535), dport=5678) / Raw(payload) ) info.data = p.copy() diff --git a/test/test_mdata.py b/test/test_mdata.py index 8f7b3d2a837..ce2ebac48af 100644 --- a/test/test_mdata.py +++ b/test/test_mdata.py @@ -42,7 +42,7 @@ class TestMdataCli(VppTestCase): p = ( Ether(dst=src_if.local_mac, src=src_if.remote_mac) / IP(src=src_if.remote_ip4, dst=dst_if.remote_ip4) - / UDP(sport=randint(1000, 2000), dport=5678) + / UDP(sport=randint(49152, 65535), dport=5678) / Raw(payload) )