git: c559590a303e - stable/14 - makefs: tests: Fix a missing slash in multi_dataset_4
Jose Luis Duran <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a83a7e4.4215d.27530aa7__47938.2586245023$1787013108$gmane$org@gitrepo.freebsd.org> |
The branch stable/14 has been updated by jlduran: URL: https://cgit.FreeBSD.org/src/commit/?id=c559590a303ee1380abd3b2192e55fde1b193427 commit c559590a303ee1380abd3b2192e55fde1b193427 Author: Jose Luis Duran <[email protected]> AuthorDate: 2026-08-11 22:27:30 +0000 Commit: Jose Luis Duran <[email protected]> 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() {