diff options
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 5e0cdb0..0d36509 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -35,7 +35,9 @@ check_PROGRAMS = \ manager_read_unittest \ manager_writemeta_unittest \ process_unittest \ - crc_unittest + crc_unittest \ + utils_unittest + TESTS = $(check_PROGRAMS) ipmi_unittest_SOURCES = ipmi_unittest.cpp @@ -116,3 +118,6 @@ process_unittest_LDADD = $(top_builddir)/process.o $(top_builddir)/ipmi.o \ crc_unittest_SOURCES = crc_unittest.cpp crc_unittest_LDADD = $(top_builddir)/crc.o + +utils_unittest_SOURCES = utils_unittest.cpp +utils_unittest_LDADD = $(top_builddir)/utils.o $(PHOSPHOR_LOGGING_LIBS) |