git: 886de9ef5a60 - stable/15 - makefs: tests: Fix a missing slash in multi_dataset_4
Jose Luis Duran <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a83a7d0.4322a.5b3910bd__15699.5997110911$1787013093$gmane$org@gitrepo.freebsd.org> |
The branch stable/15 has been updated by jlduran: URL: https://cgit.FreeBSD.org/src/commit/?id=886de9ef5a60f9b3aaeff7afe1f36a2af99781c2 commit 886de9ef5a60f9b3aaeff7afe1f36a2af99781c2 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:30:20 +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 7f0187be054f..0a6e5597499f 100644 --- a/usr.sbin/makefs/tests/makefs_zfs_tests.sh +++ b/usr.sbin/makefs/tests/makefs_zfs_tests.sh @@ -647,7 +647,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() {