mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
19c1eb829d
A zlib regression test has been added to verify the correct behavior of z_compress_level() and z_uncompress. The test case simply takes a 128k buffer, it compresses the buffer, it them uncompresses the buffer, and finally it compares the buffers after the transform. If the buffers match then everything is fine and no data was lost. It performs this test for all 9 zlib compression levels.
27 lines
1.1 KiB
Makefile
27 lines
1.1 KiB
Makefile
# Makefile.in for splat kernel module
|
|
|
|
MODULES := splat
|
|
EXTRA_CFLAGS = @KERNELCPPFLAGS@
|
|
EXTRA_CFLAGS += -I@abs_top_srcdir@/include
|
|
EXTRA_CFLAGS += -include @abs_top_builddir@/spl_config.h
|
|
|
|
# Solaris Porting LAyer Tests
|
|
obj-m := splat.o
|
|
|
|
splat-objs += @top_srcdir@/module/splat/splat-ctl.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-kmem.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-taskq.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-random.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-mutex.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-condvar.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-thread.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-rwlock.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-time.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-vnode.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-kobj.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-atomic.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-list.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-generic.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-cred.o
|
|
splat-objs += @top_srcdir@/module/splat/splat-zlib.o
|