fix: missing test header files in make dist target

Mon, 30 Dec 2019 09:13:51 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 30 Dec 2019 09:13:51 +0100
changeset 385
094476ae39e5
parent 384
9b81a555c059
child 386
8ebfe95077eb

fix: missing test header files in make dist target

test/Makefile.am file | annotate | diff | comparison | revisions
--- 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

mercurial