git: e9264b568128 - stable/14 - netinet tests: Make test jail names unique

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Sat, 03 Feb 2024 19:11:41 UTC
The branch stable/14 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=e9264b5681289f925c6daca9f31489173b625591

commit e9264b5681289f925c6daca9f31489173b625591
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2024-01-27 15:26:22 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-02-03 19:11:09 +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
    
    (cherry picked from commit 001c48b4139ff6f07de70a16518161dcea5598b9)
---
 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)