blob: 8484d62b5684712cc130e069d28e49a8a200f002 [file] [log] [blame]
Deepak Kodihalli707a3e12017-06-14 03:56:12 -05001AM_CPPFLAGS = -I${top_srcdir}
Andrew Geissler328889d2016-10-10 12:43:48 -05002
Andrew Geissler328889d2016-10-10 12:43:48 -05003TESTS = $(check_PROGRAMS)
4
Deepak Kodihalli707a3e12017-06-14 03:56:12 -05005check_PROGRAMS = \
Nagaraju Goruganti477b7312018-06-25 23:28:58 -05006 elog_errorwrap_test \
Deepak Kodihalli707a3e12017-06-14 03:56:12 -05007 serialization_test_path \
Deepak Kodihalli834dcf12018-08-30 05:05:46 -05008 serialization_test_properties \
9 remote_logging_test_address \
Deepak Kodihalli5ac1bde2018-08-30 05:38:44 -050010 remote_logging_test_port \
Patrick Venture31552c02018-12-03 19:09:55 -080011 remote_logging_test_config \
Matt Spinler99c2b402019-05-23 14:29:16 -050012 sdjournal_mock_test \
Matt Spinler1e71a4d2020-03-04 13:40:22 -060013 extensions_test \
Andrew Geisslere4960ee2020-03-30 14:31:52 -050014 elog_update_ts_test \
15 elog_quiesce_test
Deepak Kodihalli707a3e12017-06-14 03:56:12 -050016
17test_cppflags = \
18 -Igtest \
19 $(GTEST_CPPFLAGS) \
20 $(AM_CPPFLAGS) \
21 $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \
22 $(SDBUSPLUS_CFLAGS)
23
24test_cxxflags = \
25 $(PTHREAD_CFLAGS)
26
27test_ldflags = \
28 -lgtest_main -lgtest \
Matt Spinler1787c522019-07-09 12:58:37 -050029 -lgmock -lstdc++fs \
Deepak Kodihalli707a3e12017-06-14 03:56:12 -050030 $(PTHREAD_LIBS) \
31 $(OESDK_TESTCASE_FLAGS) \
32 $(PHOSPHOR_DBUS_INTERFACES_LIBS) \
33 $(SDBUSPLUS_LIBS)
34
35test_ldadd = \
36 $(top_builddir)/elog_serialize.o \
37 $(top_builddir)/elog_entry.o \
38 $(top_builddir)/log_manager.o \
Deepak Kodihalli707a3e12017-06-14 03:56:12 -050039 $(top_builddir)/xyz/openbmc_project/Logging/Internal/Manager/server.o \
40 $(top_builddir)/elog_meta.o \
41 $(top_builddir)/elog-lookup.o \
Patrick Venture59a6b1f2018-08-29 11:41:01 -070042 $(top_builddir)/elog-process-metadata.o \
Matt Spinler99c2b402019-05-23 14:29:16 -050043 $(top_builddir)/sdjournal.o \
44 $(top_builddir)/extensions.o
Deepak Kodihalli707a3e12017-06-14 03:56:12 -050045
Patrick Venture59a6b1f2018-08-29 11:41:01 -070046remote_logging_test_ldadd = \
47 $(top_builddir)/phosphor-rsyslog-config/server-conf.o \
48 $(top_builddir)/sdjournal.o
Deepak Kodihalli707a3e12017-06-14 03:56:12 -050049
Nagaraju Goruganti477b7312018-06-25 23:28:58 -050050elog_errorwrap_test_CPPFLAGS = $(test_cppflags)
51elog_errorwrap_test_CXXFLAGS = $(test_cxxflags)
52elog_errorwrap_test_SOURCES = elog_errorwrap_test.cpp
53elog_errorwrap_test_LDADD = $(test_ldadd)
54elog_errorwrap_test_LDFLAGS = \
Matt Spinler1787c522019-07-09 12:58:37 -050055 $(test_ldflags)
Deepak Kodihalli707a3e12017-06-14 03:56:12 -050056
57serialization_test_path_CPPFLAGS = $(test_cppflags)
58serialization_test_path_CXXFLAGS = $(test_cxxflags)
59serialization_test_path_SOURCES = serialization_test_path.cpp
60serialization_test_path_LDADD = $(test_ldadd)
61serialization_test_path_LDFLAGS = \
Matt Spinler1787c522019-07-09 12:58:37 -050062 $(test_ldflags)
Deepak Kodihalli707a3e12017-06-14 03:56:12 -050063
64serialization_test_properties_CPPFLAGS = $(test_cppflags)
65serialization_test_properties_CXXFLAGS = $(test_cxxflags)
66serialization_test_properties_SOURCES = serialization_test_properties.cpp
67serialization_test_properties_LDADD = $(test_ldadd)
68serialization_test_properties_LDFLAGS = \
Matt Spinler1787c522019-07-09 12:58:37 -050069 $(test_ldflags)
Deepak Kodihalli834dcf12018-08-30 05:05:46 -050070
71remote_logging_test_address_CPPFLAGS = $(test_cppflags)
72remote_logging_test_address_CXXFLAGS = $(test_cxxflags)
73remote_logging_test_address_SOURCES = remote_logging_test_address.cpp
74remote_logging_test_address_LDADD = $(remote_logging_test_ldadd)
75remote_logging_test_address_LDFLAGS = \
Matt Spinler1787c522019-07-09 12:58:37 -050076 $(test_ldflags)
Deepak Kodihalli834dcf12018-08-30 05:05:46 -050077
78remote_logging_test_port_CPPFLAGS = $(test_cppflags)
79remote_logging_test_port_CXXFLAGS = $(test_cxxflags)
80remote_logging_test_port_SOURCES = remote_logging_test_port.cpp
81remote_logging_test_port_LDADD = $(remote_logging_test_ldadd)
82remote_logging_test_port_LDFLAGS = \
Matt Spinler1787c522019-07-09 12:58:37 -050083 $(test_ldflags)
Deepak Kodihalli5ac1bde2018-08-30 05:38:44 -050084
85remote_logging_test_config_CPPFLAGS = $(test_cppflags)
86remote_logging_test_config_CXXFLAGS = $(test_cxxflags)
87remote_logging_test_config_SOURCES = remote_logging_test_config.cpp
88remote_logging_test_config_LDADD = $(remote_logging_test_ldadd)
89remote_logging_test_config_LDFLAGS = \
Matt Spinler1787c522019-07-09 12:58:37 -050090 $(test_ldflags)
Adriana Kobylak7d111a82018-09-04 10:14:24 -050091
Patrick Venture31552c02018-12-03 19:09:55 -080092sdjournal_mock_test_CPPFLAGS = $(test_cppflags)
93sdjournal_mock_test_CXXFLAGS = $(test_cxxflags)
94sdjournal_mock_test_SOURCES = sdtest.cpp
95sdjournal_mock_test_LDADD = $(top_builddir)/sdjournal.o
96sdjournal_mock_test_LDFLAGS = $(test_ldflags)
97
Matt Spinler99c2b402019-05-23 14:29:16 -050098extensions_test_CPPFLAGS = $(test_cppflags)
99extensions_test_CXXFLAGS = $(test_cxxflags)
100extensions_test_SOURCES = extensions_test.cpp
101extensions_test_LDADD = \
102 $(top_builddir)/elog_entry.o \
103 $(top_builddir)/elog-lookup.o \
104 $(top_builddir)/elog_meta.o \
105 $(top_builddir)/elog-process-metadata.o \
106 $(top_builddir)/elog_serialize.o \
107 $(top_builddir)/log_manager.o \
Matt Spinler99c2b402019-05-23 14:29:16 -0500108 $(top_builddir)/xyz/openbmc_project/Logging/Internal/Manager/server.o
Matt Spinler1787c522019-07-09 12:58:37 -0500109extensions_test_LDFLAGS = $(test_ldflags)
Matt Spinler99c2b402019-05-23 14:29:16 -0500110
Matt Spinler1e71a4d2020-03-04 13:40:22 -0600111elog_update_ts_test_CPPFLAGS = $(test_cppflags)
112elog_update_ts_test_CXXFLAGS = $(test_cxxflags)
113elog_update_ts_test_SOURCES = elog_update_ts_test.cpp
114elog_update_ts_test_LDADD = $(test_ldadd)
115elog_update_ts_test_LDFLAGS = \
116 $(test_ldflags)
117
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500118elog_quiesce_test_CPPFLAGS = $(test_cppflags)
119elog_quiesce_test_CXXFLAGS = $(test_cxxflags)
120elog_quiesce_test_SOURCES = elog_quiesce_test.cpp
121elog_quiesce_test_LDADD = $(test_ldadd)
122elog_quiesce_test_LDFLAGS = \
123 $(test_ldflags)
124
125
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500126# TODO Remove once the test-case failure is resolved openbmc/phosphor-logging#11
127XFAIL_TESTS = elog_errorwrap_test
Matt Spinler15ee6ae2019-07-08 16:50:06 -0500128
129if ENABLE_PEL_EXTENSION
130include openpower-pels/Makefile.include
131endif