1 /* $NetBSD: t_snapshot_log.c,v 1.2 2013/02/06 09:05:01 hannken Exp $ */
7 #include <rump/rump_syscalls.h>
9 #include <ufs/ufs/ufsmount.h>
18 #include "../../h_macros.h"
20 #define IMGNAME "ffs.img"
21 #define NEWFS "newfs -F -s 10000 " IMGNAME
22 #define FSCK "fsck_ffs -fn -F"
23 #define BAKNAME "/mnt/le_snapp"
26 mount_diskfs(const char *fspec
, const char *path
)
28 struct ufs_args uargs
;
29 static int flags
= MNT_LOG
;
31 uargs
.fspec
= __UNCONST(fspec
);
33 if (rump_sys_mount(MOUNT_FFS
,
34 path
, flags
, &uargs
, sizeof(uargs
)) == -1)
35 atf_tc_fail_errno("mount ffs %s", path
);
46 #include "../common/snapshot.c"