Makefile: Build more test code
authorBart Van Assche <bvanassche@acm.org>
Wed, 1 Jan 2020 22:23:53 +0000 (14:23 -0800)
committerBart Van Assche <bvanassche@acm.org>
Thu, 2 Jan 2020 04:15:53 +0000 (20:15 -0800)
Build the t/io_uring, t/memlock and t/read-to-pipe-async executables if
'make all' is executed. Do not include t/time-test because it uses a
non-portable 128-bit integer type.

Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Makefile

index 4a07fab3b362479c536bb55a0057170f7dadb7da..f884e467665bbf3475cb260f79b873b869e36610 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -313,6 +313,11 @@ T_TEST_PROGS += $(T_GEN_RAND_PROGS)
 T_PROGS += $(T_BTRACE_FIO_PROGS)
 T_PROGS += $(T_DEDUPE_PROGS)
 T_PROGS += $(T_VS_PROGS)
+T_TEST_PROGS += $(T_MEMLOCK_PROGS)
+T_TEST_PROGS += $(T_PIPE_ASYNC_PROGS)
+ifneq (,$(findstring Linux,$(CONFIG_TARGET_OS)))
+T_TEST_PROGS += $(T_IOU_RING_PROGS)
+endif
 
 PROGS += $(T_PROGS)