reflink: ensure that we can handle reflinking a lot of extents
[xfstests-dev.git] / src / Makefile
index baa2e94b03da76d6dfd283cc702d631b338ed18f..31102086a5f6c02bd85dcbbaddf8073d777575d2 100644 (file)
@@ -10,12 +10,16 @@ TARGETS = dirstress fill fill2 getpagesize holes lstat64 \
        mmapcat append_reader append_writer dirperf metaperf \
        devzero feature alloc fault fstest t_access_root \
        godown resvtest writemod makeextents itrash rename \
-       multi_open_unlink dmiperf unwritten_sync genhashnames
+       multi_open_unlink dmiperf unwritten_sync genhashnames t_holes \
+       t_mmap_writev t_truncate_cmtime dirhash_collide t_rename_overwrite
 
 LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
        preallo_rw_pattern_writer ftrunc trunc fs_perms testx looptest \
-       locktest unwritten_mmap bulkstat_unlink_test \
-       bulkstat_unlink_test_modified t_dir_offset t_futimens t_immutable
+       locktest unwritten_mmap bulkstat_unlink_test t_stripealign \
+       bulkstat_unlink_test_modified t_dir_offset t_futimens t_immutable \
+       stale_handle pwrite_mmap_blocked t_dir_offset2 seek_sanity_test \
+       seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
+       renameat2 t_getcwd e4compact test-nextquota punch-alternating
 
 SUBDIRS =
 
@@ -25,6 +29,14 @@ ifeq ($(HAVE_XLOG_ASSIGN_LSN), true)
 LINUX_TARGETS += loggen
 endif
 
+ifeq ($(HAVE_FIEMAP), true)
+LINUX_TARGETS += fiemap-tester
+endif
+
+ifeq ($(HAVE_FALLOCATE), true)
+LCFLAGS += -DHAVE_FALLOCATE
+endif
+
 IRIX_TARGETS = open_unlink
 
 ifeq ($(PKG_PLATFORM),linux)
@@ -45,12 +57,22 @@ ifeq ($(HAVE_AIO), true)
 SUBDIRS += aio-dio-regress
 endif
 
+ifeq ($(HAVE_SSL), true)
+TARGETS += fssum
+LLDLIBS += -lssl -lcrypto
+ifeq ($(PKG_PLATFORM),linux)
+CFLAGS += -D__LINUX__
+endif
+endif
+
 CFILES = $(TARGETS:=.c)
 LDIRT = $(TARGETS)
 
 
 default: depend $(TARGETS) $(SUBDIRS)
 
+depend: .dep
+
 include $(BUILDRULES)
 
 $(TARGETS): $(LIBTEST)
@@ -61,9 +83,9 @@ LINKTEST = $(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS)
 
 install: default $(addsuffix -install,$(SUBDIRS))
        $(INSTALL) -m 755 -d $(PKG_LIB_DIR)/src
-       $(INSTALL) -m 755 $(TARGETS) $(PKG_LIB_DIR)/src
-       $(INSTALL) -m 755 fill2attr fill2fs fill2fs_check scaleread.sh $(PKG_LIB_DIR)/src
-       $(INSTALL) -m 644 dumpfile $(PKG_LIB_DIR)/src
+       $(LTINSTALL) -m 755 $(TARGETS) $(PKG_LIB_DIR)/src
+       $(LTINSTALL) -m 755 fill2attr fill2fs fill2fs_check scaleread.sh $(PKG_LIB_DIR)/src
+       $(LTINSTALL) -m 644 dumpfile $(PKG_LIB_DIR)/src
 
 %-install:
        $(MAKE) -C $* install