aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2021-04-22 21:09:03 +0000
committerAlan Somers <asomers@FreeBSD.org>2021-05-06 18:32:27 +0000
commit420dbe763f15b076751443edfeeb4f676deb3c44 (patch)
tree07e6a0f1e89faa7b79a0d32035eb2d1660c5f41d /tests
parentbe578b67b5a5bedbbec61c7164875b6b1e1b8fff (diff)
Diffstat (limited to 'tests')
-rwxr-xr-xtests/sys/geom/class/multipath/misc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sys/geom/class/multipath/misc.sh b/tests/sys/geom/class/multipath/misc.sh
index 583434e1cfa5..4da8462588ca 100755
--- a/tests/sys/geom/class/multipath/misc.sh
+++ b/tests/sys/geom/class/multipath/misc.sh
@@ -198,7 +198,7 @@ fail_on_error_cleanup()
atf_test_case physpath cleanup
physpath_head()
{
- atf_set "descr" "gmultipath should pass through the underlying providers' physical path"
+ atf_set "descr" "gmultipath should append /mp to the underlying providers' physical path"
atf_set "require.user" "root"
}
physpath_body()
@@ -217,7 +217,7 @@ physpath_body()
atf_check gnop create -z $physpath /dev/${md1}
atf_check -s exit:0 gmultipath create "$name" ${md0}.nop ${md1}.nop
gmultipath_physpath=$(diskinfo -p multipath/"$name")
- atf_check_equal "$physpath" "$gmultipath_physpath"
+ atf_check_equal "$physpath/mp" "$gmultipath_physpath"
}
physpath_cleanup()
{