git: 889d08f6b61d - main - makefs: tests: Fix a missing slash in multi_dataset_4
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 11 Aug 2026 22:35:24 UTC
The branch main has been updated by jlduran:
URL: https://cgit.FreeBSD.org/src/commit/?id=889d08f6b61da4724a6f718be7ec8d47824bc602
commit 889d08f6b61da4724a6f718be7ec8d47824bc602
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-11 22:32:56 +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
---
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()
{