blob: 5b60cd7bf5172dd2e09829b863510c722f8af605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUBDIRS = zpool-config
EXTRA_DIST = common.sh zfs-update.sh zfs.sh zpool-create.sh
ZFS=${top_srcdir}/scripts/zfs.sh
ZTEST=${top_builddir}/cmd/ztest/ztest
ZPIOS=${top_srcdir}/scripts/zpios.sh
check:
$(ZFS) -v
$(ZTEST) -V
$(ZPIOS) -c file-raid0 -t tiny
$(ZPIOS) -c file-raid10 -t tiny
$(ZPIOS) -c file-raidz -t tiny
$(ZPIOS) -c file-raidz2 -t tiny
$(ZPIOS) -c lo-raid0 -t tiny
$(ZPIOS) -c lo-raid10 -t tiny
$(ZPIOS) -c lo-raidz -t tiny
$(ZPIOS) -c lo-raidz2 -t tiny
$(ZFS) -vu
|