diff -r fae240d633fc -r 6342cbbd1922 test/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/Makefile.am Wed Oct 18 12:03:44 2017 +0200 @@ -0,0 +1,16 @@ +TESTS = ucxtest +check_PROGRAMS = ucxtest +ucxtest_SOURCES = main.c +ucxtest_SOURCES += allocator_tests.c +ucxtest_SOURCES += list_tests.c +ucxtest_SOURCES += avl_tests.c +ucxtest_SOURCES += mpool_tests.c +ucxtest_SOURCES += stack_tests.c +ucxtest_SOURCES += map_tests.c +ucxtest_SOURCES += prop_tests.c +ucxtest_SOURCES += string_tests.c +ucxtest_SOURCES += logging_tests.c +ucxtest_SOURCES += buffer_tests.c +ucxtest_SOURCES += utils_tests.c +ucxtest_LDADD = ../src/libucx.la +