21 lines
521 B
Makefile
21 lines
521 B
Makefile
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
|
|
ulimit -c unlimited
|
|
$(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
|