autoconf: use include directives instead of recursing down tests (mostly)
Only down to tests/zfs-tests/tests, but pull out C programs into the main Makefile ‒ this means we get correct dependency tracking for all programs (and parallelise across them) dist diff: -zfs-2.1.99/tests/zfs-tests/tests/stress/ -zfs-2.1.99/tests/zfs-tests/tests/stress/Makefile.am -zfs-2.1.99/tests/zfs-tests/tests/stress/Makefile.in Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #13316
This commit is contained in:
parent
48f4379974
commit
0425d58852
|
@ -17,13 +17,13 @@ include $(srcdir)/%D%/rpm/Makefile.am
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_USER
|
if CONFIG_USER
|
||||||
SUBDIRS += . tests
|
|
||||||
include $(srcdir)/%D%/cmd/Makefile.am
|
include $(srcdir)/%D%/cmd/Makefile.am
|
||||||
include $(srcdir)/%D%/contrib/Makefile.am
|
include $(srcdir)/%D%/contrib/Makefile.am
|
||||||
include $(srcdir)/%D%/etc/Makefile.am
|
include $(srcdir)/%D%/etc/Makefile.am
|
||||||
include $(srcdir)/%D%/lib/Makefile.am
|
include $(srcdir)/%D%/lib/Makefile.am
|
||||||
include $(srcdir)/%D%/man/Makefile.am
|
include $(srcdir)/%D%/man/Makefile.am
|
||||||
include $(srcdir)/%D%/scripts/Makefile.am
|
include $(srcdir)/%D%/scripts/Makefile.am
|
||||||
|
include $(srcdir)/%D%/tests/Makefile.am
|
||||||
if BUILD_LINUX
|
if BUILD_LINUX
|
||||||
include $(srcdir)/%D%/udev/Makefile.am
|
include $(srcdir)/%D%/udev/Makefile.am
|
||||||
endif
|
endif
|
||||||
|
@ -98,7 +98,6 @@ dist-hook:
|
||||||
PHONY += codecheck $(CHECKS)
|
PHONY += codecheck $(CHECKS)
|
||||||
codecheck: $(CHECKS)
|
codecheck: $(CHECKS)
|
||||||
|
|
||||||
SHELLCHECKDIRS = tests
|
|
||||||
SHELLCHECKSCRIPTS += autogen.sh
|
SHELLCHECKSCRIPTS += autogen.sh
|
||||||
|
|
||||||
PHONY += checkstyle
|
PHONY += checkstyle
|
||||||
|
|
|
@ -11,7 +11,7 @@ CPPCHECKDIRS =
|
||||||
CPPCHECKTARGETS =
|
CPPCHECKTARGETS =
|
||||||
|
|
||||||
cppcheck-recursive-%:
|
cppcheck-recursive-%:
|
||||||
$(MAKE) -C $(subst ^,/,$(subst cppcheck-recursive-,,$@)) cppcheck
|
$(MAKE) -C $(subst cppcheck-recursive-,,$@) cppcheck
|
||||||
|
|
||||||
_CTGT = $(subst cppcheck-for-,,$@)
|
_CTGT = $(subst cppcheck-for-,,$@)
|
||||||
cppcheck-for-%:
|
cppcheck-for-%:
|
||||||
|
|
|
@ -12,10 +12,7 @@ JUST_SHELLCHECK_OPTS = $(addprefix shellcheck-here-,$(subst /,^,$(1)))
|
||||||
JUST_CHECKBASHISMS_OPTS = $(addprefix checkbashisms-here-,$(subst /,^,$(1)))
|
JUST_CHECKBASHISMS_OPTS = $(addprefix checkbashisms-here-,$(subst /,^,$(1)))
|
||||||
SHELLCHECK_OPTS = $(call JUST_SHELLCHECK_OPTS,$(1)) $(call JUST_CHECKBASHISMS_OPTS,$(1))
|
SHELLCHECK_OPTS = $(call JUST_SHELLCHECK_OPTS,$(1)) $(call JUST_CHECKBASHISMS_OPTS,$(1))
|
||||||
|
|
||||||
PHONY += shellcheck shellcheck-recursive
|
PHONY += shellcheck
|
||||||
|
|
||||||
shellcheck-recursive:
|
|
||||||
@set -e; for dir in $(SHELLCHECKDIRS); do $(MAKE) -C $$dir shellcheck; done
|
|
||||||
|
|
||||||
_STGT = $(subst ^,/,$(subst shellcheck-here-,,$@))
|
_STGT = $(subst ^,/,$(subst shellcheck-here-,,$@))
|
||||||
shellcheck-here-%:
|
shellcheck-here-%:
|
||||||
|
@ -25,13 +22,10 @@ else
|
||||||
@echo "skipping shellcheck of" $(_STGT) "because shellcheck is not installed"
|
@echo "skipping shellcheck of" $(_STGT) "because shellcheck is not installed"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
shellcheck: $(SHELLCHECKSCRIPTS) $(call JUST_SHELLCHECK_OPTS,$(SHELLCHECKSCRIPTS)) shellcheck-recursive
|
shellcheck: $(SHELLCHECKSCRIPTS) $(call JUST_SHELLCHECK_OPTS,$(SHELLCHECKSCRIPTS))
|
||||||
|
|
||||||
|
|
||||||
PHONY += checkbashisms checkbashisms-recursive
|
PHONY += checkbashisms
|
||||||
|
|
||||||
checkbashisms-recursive:
|
|
||||||
@set -e; for dir in $(SHELLCHECKDIRS); do $(MAKE) -C $$dir checkbashisms; done
|
|
||||||
|
|
||||||
# command -v *is* specified by POSIX and every shell in existence supports it
|
# command -v *is* specified by POSIX and every shell in existence supports it
|
||||||
_BTGT = $(subst ^,/,$(subst checkbashisms-here-,,$@))
|
_BTGT = $(subst ^,/,$(subst checkbashisms-here-,,$@))
|
||||||
|
@ -43,4 +37,4 @@ else
|
||||||
@echo "skipping checkbashisms of" $(_BTGT) "because checkbashisms is not installed"
|
@echo "skipping checkbashisms of" $(_BTGT) "because checkbashisms is not installed"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
checkbashisms: $(SHELLCHECKSCRIPTS) $(call JUST_CHECKBASHISMS_OPTS,$(SHELLCHECKSCRIPTS)) checkbashisms-recursive
|
checkbashisms: $(SHELLCHECKSCRIPTS) $(call JUST_CHECKBASHISMS_OPTS,$(SHELLCHECKSCRIPTS))
|
||||||
|
|
11
configure.ac
11
configure.ac
|
@ -78,15 +78,6 @@ AC_CONFIG_FILES([
|
||||||
rpm/redhat/zfs-dkms.spec
|
rpm/redhat/zfs-dkms.spec
|
||||||
rpm/redhat/zfs-kmod.spec
|
rpm/redhat/zfs-kmod.spec
|
||||||
rpm/redhat/zfs.spec
|
rpm/redhat/zfs.spec
|
||||||
tests/Makefile
|
|
||||||
tests/runfiles/Makefile
|
|
||||||
tests/test-runner/Makefile
|
|
||||||
tests/test-runner/bin/Makefile
|
|
||||||
tests/test-runner/include/Makefile
|
|
||||||
tests/zfs-tests/Makefile
|
|
||||||
tests/zfs-tests/callbacks/Makefile
|
|
||||||
tests/zfs-tests/cmd/Makefile
|
|
||||||
tests/zfs-tests/include/Makefile
|
|
||||||
tests/zfs-tests/tests/Makefile
|
tests/zfs-tests/tests/Makefile
|
||||||
tests/zfs-tests/tests/functional/Makefile
|
tests/zfs-tests/tests/functional/Makefile
|
||||||
tests/zfs-tests/tests/functional/acl/Makefile
|
tests/zfs-tests/tests/functional/acl/Makefile
|
||||||
|
@ -196,7 +187,6 @@ AC_CONFIG_FILES([
|
||||||
tests/zfs-tests/tests/functional/features/large_dnode/Makefile
|
tests/zfs-tests/tests/functional/features/large_dnode/Makefile
|
||||||
tests/zfs-tests/tests/functional/grow/Makefile
|
tests/zfs-tests/tests/functional/grow/Makefile
|
||||||
tests/zfs-tests/tests/functional/history/Makefile
|
tests/zfs-tests/tests/functional/history/Makefile
|
||||||
tests/zfs-tests/tests/functional/hkdf/Makefile
|
|
||||||
tests/zfs-tests/tests/functional/inheritance/Makefile
|
tests/zfs-tests/tests/functional/inheritance/Makefile
|
||||||
tests/zfs-tests/tests/functional/inuse/Makefile
|
tests/zfs-tests/tests/functional/inuse/Makefile
|
||||||
tests/zfs-tests/tests/functional/io/Makefile
|
tests/zfs-tests/tests/functional/io/Makefile
|
||||||
|
@ -264,7 +254,6 @@ AC_CONFIG_FILES([
|
||||||
tests/zfs-tests/tests/perf/fio/Makefile
|
tests/zfs-tests/tests/perf/fio/Makefile
|
||||||
tests/zfs-tests/tests/perf/regression/Makefile
|
tests/zfs-tests/tests/perf/regression/Makefile
|
||||||
tests/zfs-tests/tests/perf/scripts/Makefile
|
tests/zfs-tests/tests/perf/scripts/Makefile
|
||||||
tests/zfs-tests/tests/stress/Makefile
|
|
||||||
zfs.release
|
zfs.release
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,30 @@
|
||||||
PHONY =
|
include $(srcdir)/%D%/zfs-tests/Makefile.am
|
||||||
include $(top_srcdir)/config/Shellcheck.am
|
|
||||||
|
|
||||||
SUBDIRS = runfiles test-runner zfs-tests
|
|
||||||
|
|
||||||
EXTRA_DIST = README.md
|
scripts_test_runner_bindir = $(datadir)/$(PACKAGE)/test-runner/bin
|
||||||
|
scripts_test_runner_bin_SCRIPTS = \
|
||||||
|
%D%/test-runner/bin/test-runner.py \
|
||||||
|
%D%/test-runner/bin/zts-report.py
|
||||||
|
|
||||||
SHELLCHECKSCRIPTS += $(shell find $(srcdir) -name '*.sh')
|
SUBSTFILES += $(scripts_test_runner_bin_SCRIPTS)
|
||||||
|
|
||||||
|
|
||||||
|
scripts_test_runner_includedir = $(datadir)/$(PACKAGE)/test-runner/include
|
||||||
|
dist_scripts_test_runner_include_DATA = \
|
||||||
|
%D%/test-runner/include/logapi.shlib
|
||||||
|
|
||||||
|
|
||||||
|
scripts_runfilesdir = $(datadir)/$(PACKAGE)/runfiles
|
||||||
|
dist_scripts_runfiles_DATA = \
|
||||||
|
%D%/runfiles/common.run \
|
||||||
|
%D%/runfiles/freebsd.run \
|
||||||
|
%D%/runfiles/linux.run \
|
||||||
|
%D%/runfiles/longevity.run \
|
||||||
|
%D%/runfiles/perf-regression.run \
|
||||||
|
%D%/runfiles/sanity.run \
|
||||||
|
%D%/runfiles/sunos.run
|
||||||
|
|
||||||
|
|
||||||
|
EXTRA_DIST += $(addprefix %D%/,README.md)
|
||||||
|
|
||||||
|
SHELLCHECKSCRIPTS += $(shell find $(srcdir)/%D% -name '*.sh')
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/runfiles
|
|
||||||
dist_pkgdata_DATA = \
|
|
||||||
common.run \
|
|
||||||
freebsd.run \
|
|
||||||
linux.run \
|
|
||||||
longevity.run \
|
|
||||||
perf-regression.run \
|
|
||||||
sanity.run \
|
|
||||||
sunos.run
|
|
|
@ -1 +0,0 @@
|
||||||
SUBDIRS = bin include
|
|
|
@ -1,10 +0,0 @@
|
||||||
CLEANFILES =
|
|
||||||
EXTRA_DIST =
|
|
||||||
include $(top_srcdir)/config/Substfiles.am
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/test-runner/bin
|
|
||||||
pkgdata_SCRIPTS = \
|
|
||||||
test-runner.py \
|
|
||||||
zts-report.py
|
|
||||||
|
|
||||||
SUBSTFILES += $(pkgdata_SCRIPTS)
|
|
|
@ -1,4 +0,0 @@
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/test-runner/include
|
|
||||||
|
|
||||||
dist_pkgdata_DATA = \
|
|
||||||
logapi.shlib
|
|
|
@ -1 +1,48 @@
|
||||||
SUBDIRS = cmd include tests callbacks
|
SUBDIRS += %D%/tests
|
||||||
|
|
||||||
|
include $(srcdir)/%D%/cmd/Makefile.am
|
||||||
|
|
||||||
|
|
||||||
|
scripts_zfs_tests_functional_libzfsdir = $(datadir)/$(PACKAGE)/zfs-tests/tests/functional/libzfs
|
||||||
|
scripts_zfs_tests_functional_libzfs_PROGRAMS = %D%/tests/functional/libzfs/many_fds
|
||||||
|
%C%_tests_functional_libzfs_many_fds_LDADD = \
|
||||||
|
libzfs.la
|
||||||
|
|
||||||
|
scripts_zfs_tests_functional_hkdfdir = $(datadir)/$(PACKAGE)/zfs-tests/tests/functional/hkdf
|
||||||
|
scripts_zfs_tests_functional_hkdf_PROGRAMS = %D%/tests/functional/hkdf/hkdf_test
|
||||||
|
%C%_tests_functional_hkdf_hkdf_test_LDADD = \
|
||||||
|
libzpool.la
|
||||||
|
|
||||||
|
if BUILD_LINUX
|
||||||
|
scripts_zfs_tests_functional_tmpfiledir = $(datadir)/$(PACKAGE)/zfs-tests/tests/functional/tmpfile
|
||||||
|
scripts_zfs_tests_functional_tmpfile_PROGRAMS = \
|
||||||
|
%D%/tests/functional/tmpfile/tmpfile_001_pos \
|
||||||
|
%D%/tests/functional/tmpfile/tmpfile_002_pos \
|
||||||
|
%D%/tests/functional/tmpfile/tmpfile_003_pos \
|
||||||
|
%D%/tests/functional/tmpfile/tmpfile_stat_mode \
|
||||||
|
%D%/tests/functional/tmpfile/tmpfile_test
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
scripts_zfs_tests_callbacksdir = $(datadir)/$(PACKAGE)/zfs-tests/callbacks
|
||||||
|
dist_scripts_zfs_tests_callbacks_SCRIPTS = \
|
||||||
|
%D%/callbacks/zfs_dbgmsg.ksh \
|
||||||
|
%D%/callbacks/zfs_dmesg.ksh \
|
||||||
|
%D%/callbacks/zfs_failsafe.ksh \
|
||||||
|
%D%/callbacks/zfs_mmp.ksh
|
||||||
|
|
||||||
|
|
||||||
|
scripts_zfs_tests_includedir = $(datadir)/$(PACKAGE)/zfs-tests/include
|
||||||
|
dist_scripts_zfs_tests_include_DATA = \
|
||||||
|
%D%/include/blkdev.shlib \
|
||||||
|
%D%/include/commands.cfg \
|
||||||
|
%D%/include/libtest.shlib \
|
||||||
|
%D%/include/math.shlib \
|
||||||
|
%D%/include/properties.shlib \
|
||||||
|
%D%/include/tunables.cfg \
|
||||||
|
%D%/include/zpool_script.shlib
|
||||||
|
|
||||||
|
nodist_scripts_zfs_tests_include_DATA = \
|
||||||
|
%D%/include/default.cfg
|
||||||
|
|
||||||
|
SUBSTFILES += $(nodist_scripts_zfs_tests_include_DATA)
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/callbacks
|
|
||||||
dist_pkgdata_SCRIPTS = \
|
|
||||||
zfs_failsafe.ksh \
|
|
||||||
zfs_dbgmsg.ksh \
|
|
||||||
zfs_dmesg.ksh \
|
|
||||||
zfs_mmp.ksh
|
|
|
@ -1,187 +1,127 @@
|
||||||
include $(top_srcdir)/config/Rules.am
|
scripts_zfs_tests_bindir = $(datadir)/$(PACKAGE)/zfs-tests/bin
|
||||||
|
|
||||||
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/bin
|
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS = badsend
|
scripts_zfs_tests_bin_PROGRAMS = %D%/chg_usr_exec
|
||||||
badsend_SOURCES = badsend.c
|
scripts_zfs_tests_bin_PROGRAMS += %D%/cp_files
|
||||||
badsend_LDADD = \
|
scripts_zfs_tests_bin_PROGRAMS += %D%/ctime
|
||||||
$(abs_top_builddir)/libzfs_core.la \
|
scripts_zfs_tests_bin_PROGRAMS += %D%/dir_rd_update
|
||||||
$(abs_top_builddir)/libzfs.la \
|
scripts_zfs_tests_bin_PROGRAMS += %D%/dosmode_readonly_write
|
||||||
$(abs_top_builddir)/libnvpair.la
|
scripts_zfs_tests_bin_PROGRAMS += %D%/get_diff
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/rename_dir
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/suid_write_to_file
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/truncate_test
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/zfs_diff-socket
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += btree_test
|
scripts_zfs_tests_bin_PROGRAMS += %D%/badsend
|
||||||
btree_test_SOURCES = btree_test.c
|
%C%_badsend_LDADD = \
|
||||||
btree_test_CPPFLAGS = $(AM_CPPFLAGS) $(FORCEDEBUG_CPPFLAGS)
|
libzfs_core.la \
|
||||||
btree_test_LDADD = \
|
libzfs.la \
|
||||||
$(abs_top_builddir)/libzpool.la \
|
libnvpair.la
|
||||||
$(abs_top_builddir)/libzfs_core.la
|
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += chg_usr_exec
|
scripts_zfs_tests_bin_PROGRAMS += %D%/btree_test
|
||||||
chg_usr_exec_SOURCES = chg_usr_exec.c
|
%C%_btree_test_CPPFLAGS = $(AM_CPPFLAGS) $(FORCEDEBUG_CPPFLAGS)
|
||||||
|
%C%_btree_test_LDADD = \
|
||||||
|
libzpool.la \
|
||||||
|
libzfs_core.la
|
||||||
|
|
||||||
|
|
||||||
if WANT_DEVNAME2DEVID
|
if WANT_DEVNAME2DEVID
|
||||||
pkgexec_PROGRAMS += devname2devid
|
scripts_zfs_tests_bin_PROGRAMS += %D%/devname2devid
|
||||||
devname2devid_SOURCES = devname2devid.c
|
%C%_devname2devid_CFLAGS = $(AM_CFLAGS) $(LIBUDEV_CFLAGS)
|
||||||
devname2devid_CFLAGS = $(AM_CFLAGS) $(LIBUDEV_CFLAGS)
|
%C%_devname2devid_LDADD = $(LIBUDEV_LIBS)
|
||||||
devname2devid_LDADD = $(LIBUDEV_LIBS)
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += dir_rd_update
|
scripts_zfs_tests_bin_PROGRAMS += %D%/draid
|
||||||
dir_rd_update_SOURCES = dir_rd_update.c
|
%C%_draid_CFLAGS = $(AM_CFLAGS) $(ZLIB_CFLAGS)
|
||||||
|
%C%_draid_LDADD = \
|
||||||
|
libzpool.la \
|
||||||
|
libnvpair.la
|
||||||
|
%C%_draid_LDADD += $(ZLIB_LIBS)
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += draid
|
EXTRA_DIST += $(addprefix %D%/,file/file_common.h)
|
||||||
draid_CFLAGS = $(AM_CFLAGS) $(ZLIB_CFLAGS)
|
scripts_zfs_tests_bin_PROGRAMS += %D%/file_check %D%/file_trunc %D%/file_write %D%/largest_file %D%/randwritecomp
|
||||||
draid_SOURCES = draid.c
|
%C%_file_check_SOURCES = %D%/file/file_check.c
|
||||||
draid_LDADD = \
|
%C%_file_trunc_SOURCES = %D%/file/file_trunc.c
|
||||||
$(abs_top_builddir)/libzpool.la \
|
%C%_file_write_SOURCES = %D%/file/file_write.c
|
||||||
$(abs_top_builddir)/libnvpair.la
|
%C%_largest_file_SOURCES = %D%/file/largest_file.c
|
||||||
draid_LDADD += $(ZLIB_LIBS)
|
%C%_randwritecomp_SOURCES = %D%/file/randwritecomp.c
|
||||||
|
|
||||||
|
|
||||||
EXTRA_DIST = file/file_common.h
|
scripts_zfs_tests_bin_PROGRAMS += %D%/libzfs_input_check
|
||||||
pkgexec_PROGRAMS += file_check file_trunc file_write largest_file randwritecomp
|
%C%_libzfs_input_check_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/include/os/@ac_system_l@/zfs
|
||||||
file_check_SOURCES = file/file_check.c
|
%C%_libzfs_input_check_LDADD = \
|
||||||
file_trunc_SOURCES = file/file_trunc.c
|
libzfs_core.la \
|
||||||
file_write_SOURCES = file/file_write.c
|
libnvpair.la
|
||||||
largest_file_SOURCES = file/largest_file.c
|
|
||||||
randwritecomp_SOURCES = file/randwritecomp.c
|
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += get_diff
|
scripts_zfs_tests_bin_PROGRAMS += %D%/mkbusy %D%/mkfile %D%/mkfiles %D%/mktree
|
||||||
get_diff_SOURCES = get_diff.c
|
%C%_mkfile_LDADD = $(LTLIBINTL)
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += libzfs_input_check
|
scripts_zfs_tests_bin_PROGRAMS += %D%/mmap_exec %D%/mmap_seek %D%/mmap_sync %D%/mmapwrite %D%/readmmap
|
||||||
libzfs_input_check_SOURCES = libzfs_input_check.c
|
%C%_mmapwrite_LDADD = -lpthread
|
||||||
if BUILD_FREEBSD
|
|
||||||
libzfs_input_check_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/include/os/freebsd/zfs
|
|
||||||
endif
|
|
||||||
if BUILD_LINUX
|
|
||||||
libzfs_input_check_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/include/os/linux/zfs
|
|
||||||
endif
|
|
||||||
libzfs_input_check_LDADD = \
|
|
||||||
$(abs_top_builddir)/libzfs_core.la \
|
|
||||||
$(abs_top_builddir)/libnvpair.la
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += mkbusy mkfile mkfiles mktree
|
|
||||||
mkbusy_SOURCES = mkbusy.c
|
|
||||||
mkfile_SOURCES = mkfile.c
|
|
||||||
mkfile_LDADD = $(LTLIBINTL)
|
|
||||||
mkfiles_SOURCES = mkfiles.c
|
|
||||||
mktree_SOURCES = mktree.c
|
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += mmap_exec mmap_seek mmap_sync mmapwrite readmmap
|
|
||||||
mmap_exec_SOURCES = mmap_exec.c
|
|
||||||
mmap_seek_SOURCES = mmap_seek.c
|
|
||||||
mmap_sync_SOURCES = mmap_sync.c
|
|
||||||
mmapwrite_SOURCES = mmapwrite.c
|
|
||||||
mmapwrite_LDADD = -lpthread
|
|
||||||
readmmap_SOURCES = readmmap.c
|
|
||||||
|
|
||||||
if WANT_MMAP_LIBAIO
|
if WANT_MMAP_LIBAIO
|
||||||
pkgexec_PROGRAMS += mmap_libaio
|
scripts_zfs_tests_bin_PROGRAMS += %D%/mmap_libaio
|
||||||
mmap_libaio_SOURCES = mmap_libaio.c
|
%C%_mmap_libaio_CFLAGS = $(AM_CFLAGS) $(LIBAIO_CFLAGS)
|
||||||
mmap_libaio_CFLAGS = $(AM_CFLAGS) $(LIBAIO_CFLAGS)
|
%C%_mmap_libaio_LDADD = $(LIBAIO_LIBS)
|
||||||
mmap_libaio_LDADD = $(LIBAIO_LIBS)
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += nvlist_to_lua
|
scripts_zfs_tests_bin_PROGRAMS += %D%/nvlist_to_lua
|
||||||
nvlist_to_lua_SOURCES = nvlist_to_lua.c
|
%C%_nvlist_to_lua_LDADD = \
|
||||||
nvlist_to_lua_LDADD = \
|
libzfs_core.la \
|
||||||
$(abs_top_builddir)/libzfs_core.la \
|
libnvpair.la
|
||||||
$(abs_top_builddir)/libnvpair.la
|
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/rm_lnkcnt_zero_file
|
||||||
|
%C%_rm_lnkcnt_zero_file_LDADD = -lpthread
|
||||||
|
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/send_doall
|
||||||
|
%C%_send_doall_LDADD = \
|
||||||
|
libzfs_core.la \
|
||||||
|
libzfs.la \
|
||||||
|
libnvpair.la
|
||||||
|
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/stride_dd
|
||||||
|
%C%_stride_dd_LDADD = -lrt
|
||||||
|
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/threadsappend
|
||||||
|
%C%_threadsappend_LDADD = -lpthread
|
||||||
|
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/ereports
|
||||||
|
%C%_ereports_LDADD = \
|
||||||
|
libnvpair.la \
|
||||||
|
libzfs.la
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += rename_dir
|
scripts_zfs_tests_bin_PROGRAMS += %D%/edonr_test %D%/skein_test %D%/sha2_test
|
||||||
rename_dir_SOURCES = rename_dir.c
|
%C%_skein_test_SOURCES = %D%/checksum/skein_test.c
|
||||||
|
%C%_sha2_test_SOURCES = %D%/checksum/sha2_test.c
|
||||||
pkgexec_PROGRAMS += rm_lnkcnt_zero_file
|
%C%_edonr_test_SOURCES = %D%/checksum/edonr_test.c
|
||||||
rm_lnkcnt_zero_file_SOURCES = rm_lnkcnt_zero_file.c
|
%C%_skein_test_LDADD = \
|
||||||
rm_lnkcnt_zero_file_LDADD = -lpthread
|
libicp.la \
|
||||||
|
libspl_assert.la
|
||||||
pkgexec_PROGRAMS += send_doall
|
%C%_sha2_test_LDADD = $(%C%_skein_test_LDADD)
|
||||||
send_doall_SOURCES = send_doall.c
|
%C%_edonr_test_LDADD = $(%C%_skein_test_LDADD)
|
||||||
send_doall_LDADD = \
|
|
||||||
$(abs_top_builddir)/libzfs_core.la \
|
|
||||||
$(abs_top_builddir)/libzfs.la \
|
|
||||||
$(abs_top_builddir)/libnvpair.la
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += stride_dd
|
|
||||||
stride_dd_SOURCES = stride_dd.c
|
|
||||||
stride_dd_LDADD = -lrt
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += threadsappend
|
|
||||||
threadsappend_SOURCES = threadsappend.c
|
|
||||||
threadsappend_LDADD = -lpthread
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += suid_write_to_file
|
|
||||||
suid_write_to_file_SOURCES = suid_write_to_file.c
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += cp_files
|
|
||||||
cp_files_SOURCES = cp_files.c
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += ctime
|
|
||||||
ctime_SOURCES = ctime.c
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += truncate_test
|
|
||||||
truncate_test_SOURCES = truncate_test.c
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += ereports
|
|
||||||
ereports_SOURCES = ereports.c
|
|
||||||
ereports_LDADD = \
|
|
||||||
$(abs_top_builddir)/libnvpair.la \
|
|
||||||
$(abs_top_builddir)/libzfs.la
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += zfs_diff-socket
|
|
||||||
zfs_diff_socket_SOURCES = zfs_diff-socket.c
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += dosmode_readonly_write
|
|
||||||
dosmode_readonly_write_SOURCES = dosmode_readonly_write.c
|
|
||||||
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += edonr_test skein_test sha2_test
|
|
||||||
skein_test_SOURCES = checksum/skein_test.c
|
|
||||||
sha2_test_SOURCES = checksum/sha2_test.c
|
|
||||||
edonr_test_SOURCES = checksum/edonr_test.c
|
|
||||||
skein_test_LDADD = \
|
|
||||||
$(abs_top_builddir)/libicp.la \
|
|
||||||
$(abs_top_builddir)/libspl_assert.la
|
|
||||||
sha2_test_LDADD = \
|
|
||||||
$(abs_top_builddir)/libicp.la \
|
|
||||||
$(abs_top_builddir)/libspl_assert.la
|
|
||||||
edonr_test_LDADD = \
|
|
||||||
$(abs_top_builddir)/libicp.la \
|
|
||||||
$(abs_top_builddir)/libspl_assert.la
|
|
||||||
|
|
||||||
|
|
||||||
if BUILD_LINUX
|
if BUILD_LINUX
|
||||||
pkgexec_PROGRAMS += getversion
|
scripts_zfs_tests_bin_PROGRAMS += %D%/getversion
|
||||||
getversion_SOURCES = getversion.c
|
scripts_zfs_tests_bin_PROGRAMS += %D%/user_ns_exec
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/xattrtest
|
||||||
|
scripts_zfs_tests_bin_PROGRAMS += %D%/zed_fd_spill-zedlet
|
||||||
|
|
||||||
EXTRA_DIST += linux_dos_attributes/dos_attributes.h
|
|
||||||
pkgexec_PROGRAMS += read_dos_attributes write_dos_attributes
|
|
||||||
read_dos_attributes_SOURCES = linux_dos_attributes/read_dos_attributes.c
|
|
||||||
write_dos_attributes_SOURCES = linux_dos_attributes/write_dos_attributes.c
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += randfree_file
|
EXTRA_DIST += $(addprefix %D%/,linux_dos_attributes/dos_attributes.h)
|
||||||
randfree_file_SOURCES = file/randfree_file.c
|
scripts_zfs_tests_bin_PROGRAMS += %D%/read_dos_attributes %D%/write_dos_attributes
|
||||||
|
%C%_read_dos_attributes_SOURCES = %D%/linux_dos_attributes/read_dos_attributes.c
|
||||||
|
%C%_write_dos_attributes_SOURCES = %D%/linux_dos_attributes/write_dos_attributes.c
|
||||||
|
|
||||||
pkgexec_PROGRAMS += user_ns_exec
|
|
||||||
user_ns_exec_SOURCES = user_ns_exec.c
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS += xattrtest
|
scripts_zfs_tests_bin_PROGRAMS += %D%/randfree_file
|
||||||
xattrtest_SOURCES = xattrtest.c
|
%C%_randfree_file_SOURCES = %D%/file/randfree_file.c
|
||||||
|
|
||||||
pkgexec_PROGRAMS += zed_fd_spill-zedlet
|
|
||||||
zed_fd_spill_zedlet_SOURCES = zed_fd_spill-zedlet.c
|
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
CLEANFILES =
|
|
||||||
EXTRA_DIST =
|
|
||||||
include $(top_srcdir)/config/Substfiles.am
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/include
|
|
||||||
dist_pkgdata_DATA = \
|
|
||||||
blkdev.shlib \
|
|
||||||
commands.cfg \
|
|
||||||
libtest.shlib \
|
|
||||||
math.shlib \
|
|
||||||
properties.shlib \
|
|
||||||
tunables.cfg \
|
|
||||||
zpool_script.shlib
|
|
||||||
|
|
||||||
nodist_pkgdata_DATA = default.cfg
|
|
||||||
SUBSTFILES += $(nodist_pkgdata_DATA)
|
|
|
@ -1 +1 @@
|
||||||
SUBDIRS = functional perf stress
|
SUBDIRS = functional perf
|
||||||
|
|
|
@ -29,7 +29,6 @@ SUBDIRS = \
|
||||||
features \
|
features \
|
||||||
grow \
|
grow \
|
||||||
history \
|
history \
|
||||||
hkdf \
|
|
||||||
inheritance \
|
inheritance \
|
||||||
inuse \
|
inuse \
|
||||||
io \
|
io \
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
include $(top_srcdir)/config/Rules.am
|
|
||||||
|
|
||||||
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/hkdf
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS = hkdf_test
|
|
||||||
hkdf_test_SOURCES = hkdf_test.c
|
|
||||||
hkdf_test_LDADD = \
|
|
||||||
$(abs_top_builddir)/libzpool.la
|
|
|
@ -1,14 +1,6 @@
|
||||||
include $(top_srcdir)/config/Rules.am
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/libzfs
|
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/libzfs
|
||||||
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/libzfs
|
|
||||||
|
|
||||||
dist_pkgdata_SCRIPTS = \
|
dist_pkgdata_SCRIPTS = \
|
||||||
cleanup.ksh \
|
cleanup.ksh \
|
||||||
setup.ksh \
|
setup.ksh \
|
||||||
libzfs_input.ksh
|
libzfs_input.ksh
|
||||||
|
|
||||||
pkgexec_PROGRAMS = many_fds
|
|
||||||
many_fds_SOURCES = many_fds.c
|
|
||||||
many_fds_LDADD = \
|
|
||||||
$(abs_top_builddir)/libzfs.la
|
|
||||||
|
|
|
@ -1,16 +1,5 @@
|
||||||
include $(top_srcdir)/config/Rules.am
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/tmpfile
|
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/tmpfile
|
||||||
|
|
||||||
dist_pkgdata_SCRIPTS = \
|
dist_pkgdata_SCRIPTS = \
|
||||||
cleanup.ksh \
|
cleanup.ksh \
|
||||||
setup.ksh
|
setup.ksh
|
||||||
|
|
||||||
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/tmpfile
|
|
||||||
|
|
||||||
pkgexec_PROGRAMS = tmpfile_test tmpfile_001_pos tmpfile_002_pos \
|
|
||||||
tmpfile_003_pos tmpfile_stat_mode
|
|
||||||
tmpfile_test_SOURCES= tmpfile_test.c
|
|
||||||
tmpfile_001_pos_SOURCES = tmpfile_001_pos.c
|
|
||||||
tmpfile_002_pos_SOURCES = tmpfile_002_pos.c
|
|
||||||
tmpfile_003_pos_SOURCES = tmpfile_003_pos.c
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
SUBDIRS =
|
|
Loading…
Reference in New Issue