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
     1.1 --- a/test/Makefile.am	Sun Dec 29 20:21:35 2019 +0100
     1.2 +++ b/test/Makefile.am	Mon Dec 30 09:13:51 2019 +0100
     1.3 @@ -29,6 +29,7 @@
     1.4  TESTS = ucxtest
     1.5  check_PROGRAMS = ucxtest
     1.6  ucxtest_CFLAGS = -I$(top_srcdir)/src
     1.7 +
     1.8  ucxtest_SOURCES = main.c
     1.9  ucxtest_SOURCES += allocator_tests.c
    1.10  ucxtest_SOURCES += array_tests.c
    1.11 @@ -42,5 +43,20 @@
    1.12  ucxtest_SOURCES += logging_tests.c
    1.13  ucxtest_SOURCES += buffer_tests.c
    1.14  ucxtest_SOURCES += utils_tests.c
    1.15 +
    1.16 +ucxtest_SOURCES += main.h
    1.17 +ucxtest_SOURCES += allocator_tests.h
    1.18 +ucxtest_SOURCES += array_tests.h
    1.19 +ucxtest_SOURCES += list_tests.h
    1.20 +ucxtest_SOURCES += avl_tests.h
    1.21 +ucxtest_SOURCES += mpool_tests.h
    1.22 +ucxtest_SOURCES += stack_tests.h
    1.23 +ucxtest_SOURCES += map_tests.h
    1.24 +ucxtest_SOURCES += prop_tests.h
    1.25 +ucxtest_SOURCES += string_tests.h
    1.26 +ucxtest_SOURCES += logging_tests.h
    1.27 +ucxtest_SOURCES += buffer_tests.h
    1.28 +ucxtest_SOURCES += utils_tests.h
    1.29 +
    1.30  ucxtest_LDFLAGS = -static
    1.31  ucxtest_LDADD = ../src/libucx.la

mercurial