Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 1 | AM_CPPFLAGS = -I${top_srcdir} |
Andrew Geissler | 328889d | 2016-10-10 12:43:48 -0500 | [diff] [blame] | 2 | |
Andrew Geissler | 328889d | 2016-10-10 12:43:48 -0500 | [diff] [blame] | 3 | TESTS = $(check_PROGRAMS) |
| 4 | |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 5 | check_PROGRAMS = \ |
Nagaraju Goruganti | 477b731 | 2018-06-25 23:28:58 -0500 | [diff] [blame] | 6 | elog_errorwrap_test \ |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 7 | serialization_test_path \ |
Deepak Kodihalli | 834dcf1 | 2018-08-30 05:05:46 -0500 | [diff] [blame] | 8 | serialization_test_properties \ |
| 9 | remote_logging_test_address \ |
Deepak Kodihalli | 5ac1bde | 2018-08-30 05:38:44 -0500 | [diff] [blame] | 10 | remote_logging_test_port \ |
Patrick Venture | 31552c0 | 2018-12-03 19:09:55 -0800 | [diff] [blame] | 11 | remote_logging_test_config \ |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 12 | sdjournal_mock_test \ |
Matt Spinler | 1e71a4d | 2020-03-04 13:40:22 -0600 | [diff] [blame] | 13 | extensions_test \ |
| 14 | elog_update_ts_test |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 15 | |
| 16 | test_cppflags = \ |
| 17 | -Igtest \ |
| 18 | $(GTEST_CPPFLAGS) \ |
| 19 | $(AM_CPPFLAGS) \ |
| 20 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 21 | $(SDBUSPLUS_CFLAGS) |
| 22 | |
| 23 | test_cxxflags = \ |
| 24 | $(PTHREAD_CFLAGS) |
| 25 | |
| 26 | test_ldflags = \ |
| 27 | -lgtest_main -lgtest \ |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 28 | -lgmock -lstdc++fs \ |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 29 | $(PTHREAD_LIBS) \ |
| 30 | $(OESDK_TESTCASE_FLAGS) \ |
| 31 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 32 | $(SDBUSPLUS_LIBS) |
| 33 | |
| 34 | test_ldadd = \ |
| 35 | $(top_builddir)/elog_serialize.o \ |
| 36 | $(top_builddir)/elog_entry.o \ |
| 37 | $(top_builddir)/log_manager.o \ |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 38 | $(top_builddir)/xyz/openbmc_project/Logging/Internal/Manager/server.o \ |
| 39 | $(top_builddir)/elog_meta.o \ |
| 40 | $(top_builddir)/elog-lookup.o \ |
Patrick Venture | 59a6b1f | 2018-08-29 11:41:01 -0700 | [diff] [blame] | 41 | $(top_builddir)/elog-process-metadata.o \ |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 42 | $(top_builddir)/sdjournal.o \ |
| 43 | $(top_builddir)/extensions.o |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 44 | |
Patrick Venture | 59a6b1f | 2018-08-29 11:41:01 -0700 | [diff] [blame] | 45 | remote_logging_test_ldadd = \ |
| 46 | $(top_builddir)/phosphor-rsyslog-config/server-conf.o \ |
| 47 | $(top_builddir)/sdjournal.o |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 48 | |
Nagaraju Goruganti | 477b731 | 2018-06-25 23:28:58 -0500 | [diff] [blame] | 49 | elog_errorwrap_test_CPPFLAGS = $(test_cppflags) |
| 50 | elog_errorwrap_test_CXXFLAGS = $(test_cxxflags) |
| 51 | elog_errorwrap_test_SOURCES = elog_errorwrap_test.cpp |
| 52 | elog_errorwrap_test_LDADD = $(test_ldadd) |
| 53 | elog_errorwrap_test_LDFLAGS = \ |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 54 | $(test_ldflags) |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 55 | |
| 56 | serialization_test_path_CPPFLAGS = $(test_cppflags) |
| 57 | serialization_test_path_CXXFLAGS = $(test_cxxflags) |
| 58 | serialization_test_path_SOURCES = serialization_test_path.cpp |
| 59 | serialization_test_path_LDADD = $(test_ldadd) |
| 60 | serialization_test_path_LDFLAGS = \ |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 61 | $(test_ldflags) |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 62 | |
| 63 | serialization_test_properties_CPPFLAGS = $(test_cppflags) |
| 64 | serialization_test_properties_CXXFLAGS = $(test_cxxflags) |
| 65 | serialization_test_properties_SOURCES = serialization_test_properties.cpp |
| 66 | serialization_test_properties_LDADD = $(test_ldadd) |
| 67 | serialization_test_properties_LDFLAGS = \ |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 68 | $(test_ldflags) |
Deepak Kodihalli | 834dcf1 | 2018-08-30 05:05:46 -0500 | [diff] [blame] | 69 | |
| 70 | remote_logging_test_address_CPPFLAGS = $(test_cppflags) |
| 71 | remote_logging_test_address_CXXFLAGS = $(test_cxxflags) |
| 72 | remote_logging_test_address_SOURCES = remote_logging_test_address.cpp |
| 73 | remote_logging_test_address_LDADD = $(remote_logging_test_ldadd) |
| 74 | remote_logging_test_address_LDFLAGS = \ |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 75 | $(test_ldflags) |
Deepak Kodihalli | 834dcf1 | 2018-08-30 05:05:46 -0500 | [diff] [blame] | 76 | |
| 77 | remote_logging_test_port_CPPFLAGS = $(test_cppflags) |
| 78 | remote_logging_test_port_CXXFLAGS = $(test_cxxflags) |
| 79 | remote_logging_test_port_SOURCES = remote_logging_test_port.cpp |
| 80 | remote_logging_test_port_LDADD = $(remote_logging_test_ldadd) |
| 81 | remote_logging_test_port_LDFLAGS = \ |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 82 | $(test_ldflags) |
Deepak Kodihalli | 5ac1bde | 2018-08-30 05:38:44 -0500 | [diff] [blame] | 83 | |
| 84 | remote_logging_test_config_CPPFLAGS = $(test_cppflags) |
| 85 | remote_logging_test_config_CXXFLAGS = $(test_cxxflags) |
| 86 | remote_logging_test_config_SOURCES = remote_logging_test_config.cpp |
| 87 | remote_logging_test_config_LDADD = $(remote_logging_test_ldadd) |
| 88 | remote_logging_test_config_LDFLAGS = \ |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 89 | $(test_ldflags) |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 90 | |
Patrick Venture | 31552c0 | 2018-12-03 19:09:55 -0800 | [diff] [blame] | 91 | sdjournal_mock_test_CPPFLAGS = $(test_cppflags) |
| 92 | sdjournal_mock_test_CXXFLAGS = $(test_cxxflags) |
| 93 | sdjournal_mock_test_SOURCES = sdtest.cpp |
| 94 | sdjournal_mock_test_LDADD = $(top_builddir)/sdjournal.o |
| 95 | sdjournal_mock_test_LDFLAGS = $(test_ldflags) |
| 96 | |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 97 | extensions_test_CPPFLAGS = $(test_cppflags) |
| 98 | extensions_test_CXXFLAGS = $(test_cxxflags) |
| 99 | extensions_test_SOURCES = extensions_test.cpp |
| 100 | extensions_test_LDADD = \ |
| 101 | $(top_builddir)/elog_entry.o \ |
| 102 | $(top_builddir)/elog-lookup.o \ |
| 103 | $(top_builddir)/elog_meta.o \ |
| 104 | $(top_builddir)/elog-process-metadata.o \ |
| 105 | $(top_builddir)/elog_serialize.o \ |
| 106 | $(top_builddir)/log_manager.o \ |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 107 | $(top_builddir)/xyz/openbmc_project/Logging/Internal/Manager/server.o |
Matt Spinler | 1787c52 | 2019-07-09 12:58:37 -0500 | [diff] [blame] | 108 | extensions_test_LDFLAGS = $(test_ldflags) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 109 | |
Matt Spinler | 1e71a4d | 2020-03-04 13:40:22 -0600 | [diff] [blame] | 110 | elog_update_ts_test_CPPFLAGS = $(test_cppflags) |
| 111 | elog_update_ts_test_CXXFLAGS = $(test_cxxflags) |
| 112 | elog_update_ts_test_SOURCES = elog_update_ts_test.cpp |
| 113 | elog_update_ts_test_LDADD = $(test_ldadd) |
| 114 | elog_update_ts_test_LDFLAGS = \ |
| 115 | $(test_ldflags) |
| 116 | |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 117 | # TODO Remove once the test-case failure is resolved openbmc/phosphor-logging#11 |
| 118 | XFAIL_TESTS = elog_errorwrap_test |
Matt Spinler | 15ee6ae | 2019-07-08 16:50:06 -0500 | [diff] [blame] | 119 | |
| 120 | if ENABLE_PEL_EXTENSION |
| 121 | include openpower-pels/Makefile.include |
| 122 | endif |