# HG changeset patch # User Mike Becker # Date 1577693631 -3600 # Node ID 094476ae39e55453773729f91f42f9bfce91f36c # Parent 9b81a555c0595bada7f07cb1f699a8d23b43e7cf fix: missing test header files in make dist target diff -r 9b81a555c059 -r 094476ae39e5 test/Makefile.am --- a/test/Makefile.am Sun Dec 29 20:21:35 2019 +0100 +++ b/test/Makefile.am Mon Dec 30 09:13:51 2019 +0100 @@ -29,6 +29,7 @@ TESTS = ucxtest check_PROGRAMS = ucxtest ucxtest_CFLAGS = -I$(top_srcdir)/src + ucxtest_SOURCES = main.c ucxtest_SOURCES += allocator_tests.c ucxtest_SOURCES += array_tests.c @@ -42,5 +43,20 @@ ucxtest_SOURCES += logging_tests.c ucxtest_SOURCES += buffer_tests.c ucxtest_SOURCES += utils_tests.c + +ucxtest_SOURCES += main.h +ucxtest_SOURCES += allocator_tests.h +ucxtest_SOURCES += array_tests.h +ucxtest_SOURCES += list_tests.h +ucxtest_SOURCES += avl_tests.h +ucxtest_SOURCES += mpool_tests.h +ucxtest_SOURCES += stack_tests.h +ucxtest_SOURCES += map_tests.h +ucxtest_SOURCES += prop_tests.h +ucxtest_SOURCES += string_tests.h +ucxtest_SOURCES += logging_tests.h +ucxtest_SOURCES += buffer_tests.h +ucxtest_SOURCES += utils_tests.h + ucxtest_LDFLAGS = -static ucxtest_LDADD = ../src/libucx.la