diff options
author | Patrick Venture <venture@google.com> | 2018-11-21 14:19:28 -0800 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2018-11-28 08:47:53 -0800 |
commit | c18e2b649691e393f0c6e0fcd9af288b68d7d9b5 (patch) | |
tree | 50b0ea97c204c1b43d32303f8a3ce0b115eaf98f /test/Makefile.am | |
parent | 2536863d32314250b94794143d6cadaf8e8c86fe (diff) | |
download | phosphor-ipmi-blobs-c18e2b649691e393f0c6e0fcd9af288b68d7d9b5.tar.gz phosphor-ipmi-blobs-c18e2b649691e393f0c6e0fcd9af288b68d7d9b5.zip |
add dynamic library interface to enable testing
Add interface defining the methods for dynamic linking to enable
testing.
Change-Id: If4d090d3cedc019b426435a1f651191803bfc1a9
Signed-off-by: Patrick Venture <venture@google.com>
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) |