mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-06-27 19:47:36 +03:00

Add a test for the dirty dnode SEEK_HOLE/SEEK_DATA bug described in https://github.com/openzfs/zfs/issues/15526 The bug was fixed in https://github.com/openzfs/zfs/pull/15571 and was backported to 2.2.2 and 2.1.14. This test case is just to make sure it does not come back. seekflood.c originally written by Rob Norris. Reviewed-by: Graham Perrin <grahamperrin@freebsd.org> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Rob Norris <robn@despairlabs.com> Signed-off-by: Tony Hutter <hutter2@llnl.gov> Closes #15608
16 lines
373 B
Makefile
16 lines
373 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cp_files
|
|
|
|
dist_pkgdata_SCRIPTS = \
|
|
cp_files_001_pos.ksh \
|
|
cp_stress.ksh \
|
|
cleanup.ksh \
|
|
setup.ksh
|
|
|
|
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cp_files
|
|
|
|
pkgexec_PROGRAMS = cp_files seekflood
|
|
cp_files_SOURCES= cp_files.c
|
|
seekflood_SOURCES = seekflood.c
|