git: c559590a303e - stable/14 - makefs: tests: Fix a missing slash in multi_dataset_4
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 18 Aug 2026 00:31:32 UTC
The branch stable/14 has been updated by jlduran:
URL: https://cgit.FreeBSD.org/src/commit/?id=c559590a303ee1380abd3b2192e55fde1b193427
commit c559590a303ee1380abd3b2192e55fde1b193427
Author: Jose Luis Duran <jlduran@FreeBSD.org>
AuthorDate: 2026-08-11 22:27:30 +0000
Commit: Jose Luis Duran <jlduran@FreeBSD.org>
CommitDate: 2026-08-18 00:29:45 +0000
makefs: tests: Fix a missing slash in multi_dataset_4
Fix a typo in the ZFS multi_dataset_4 test, where a path separator was
missing.
Reported by: markj
MFC after: 1 week
(cherry picked from commit 889d08f6b61da4724a6f718be7ec8d47824bc602)
---
usr.sbin/makefs/tests/makefs_zfs_tests.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/makefs/tests/makefs_zfs_tests.sh b/usr.sbin/makefs/tests/makefs_zfs_tests.sh
index 13abaf50fba4..22b81d93267d 100644
--- a/usr.sbin/makefs/tests/makefs_zfs_tests.sh
+++ b/usr.sbin/makefs/tests/makefs_zfs_tests.sh
@@ -636,7 +636,7 @@ multi_dataset_4_body()
zfs list -H -o mountpoint ${ZFS_POOL_NAME}/dir1
# dir1/a should be part of the root dataset, not dir1.
- atf_check -s not-exit:0 -e not-empty stat ${TEST_MOUNT_DIR}dir1/a
+ atf_check -s not-exit:0 -e not-empty stat ${TEST_MOUNT_DIR}/dir1/a
}
multi_dataset_4_cleanup()
{