The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=001c48b4139ff6f07de70a16518161dcea5598b9
commit 001c48b4139ff6f07de70a16518161dcea5598b9 Author: Mark Johnston <[email protected]> AuthorDate: 2024-01-27 15:26:22 +0000 Commit: Mark Johnston <[email protected]> CommitDate: 2024-01-27 18:51:37 +0000 netinet tests: Make test jail names unique Otherwise we get spurious test failures when running tests in parallel. The intent here was to name jails after the tests, but this was done incorrectly in a couple of places. MFC after: 1 week --- tests/sys/netinet/output.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/sys/netinet/output.sh b/tests/sys/netinet/output.sh index 9ede7e66aaa5..23d427605878 100755 --- a/tests/sys/netinet/output.sh +++ b/tests/sys/netinet/output.sh @@ -386,7 +386,7 @@ output_udp_flowid_mpath_success_body() script_name=`dirname $0`/../common/net_receiver.py script_name=`realpath ${script_name}` - jname="v4t-output_tcp_flowid_mpath_success" + jname="v4t-output_udp_flowid_mpath_success" epair0=$(vnet_mkepair) epair1=$(vnet_mkepair) @@ -510,7 +510,7 @@ output_raw_flowid_mpath_success_body() plen=24 text="testtesttst" - jname="v4t-output_tcp_flowid_mpath_success" + jname="v4t-output_raw_flowid_mpath_success" epair0=$(vnet_mkepair) epair1=$(vnet_mkepair)
