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 \ |
| 12 | sdjournal_mock_test |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 13 | |
| 14 | test_cppflags = \ |
| 15 | -Igtest \ |
| 16 | $(GTEST_CPPFLAGS) \ |
| 17 | $(AM_CPPFLAGS) \ |
| 18 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 19 | $(SDBUSPLUS_CFLAGS) |
| 20 | |
| 21 | test_cxxflags = \ |
| 22 | $(PTHREAD_CFLAGS) |
| 23 | |
| 24 | test_ldflags = \ |
| 25 | -lgtest_main -lgtest \ |
Patrick Venture | e681bc4 | 2018-12-03 20:16:38 -0800 | [diff] [blame] | 26 | -lgmock \ |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 27 | $(PTHREAD_LIBS) \ |
| 28 | $(OESDK_TESTCASE_FLAGS) \ |
| 29 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 30 | $(SDBUSPLUS_LIBS) |
| 31 | |
| 32 | test_ldadd = \ |
| 33 | $(top_builddir)/elog_serialize.o \ |
| 34 | $(top_builddir)/elog_entry.o \ |
| 35 | $(top_builddir)/log_manager.o \ |
| 36 | $(top_builddir)/org.openbmc.Associations.o \ |
| 37 | $(top_builddir)/xyz/openbmc_project/Logging/Internal/Manager/server.o \ |
| 38 | $(top_builddir)/elog_meta.o \ |
| 39 | $(top_builddir)/elog-lookup.o \ |
Patrick Venture | 59a6b1f | 2018-08-29 11:41:01 -0700 | [diff] [blame] | 40 | $(top_builddir)/elog-process-metadata.o \ |
| 41 | $(top_builddir)/sdjournal.o |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 42 | |
Patrick Venture | 59a6b1f | 2018-08-29 11:41:01 -0700 | [diff] [blame] | 43 | remote_logging_test_ldadd = \ |
| 44 | $(top_builddir)/phosphor-rsyslog-config/server-conf.o \ |
| 45 | $(top_builddir)/sdjournal.o |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 46 | |
Nagaraju Goruganti | 477b731 | 2018-06-25 23:28:58 -0500 | [diff] [blame] | 47 | elog_errorwrap_test_CPPFLAGS = $(test_cppflags) |
| 48 | elog_errorwrap_test_CXXFLAGS = $(test_cxxflags) |
| 49 | elog_errorwrap_test_SOURCES = elog_errorwrap_test.cpp |
| 50 | elog_errorwrap_test_LDADD = $(test_ldadd) |
| 51 | elog_errorwrap_test_LDFLAGS = \ |
| 52 | $(test_ldflags) \ |
| 53 | -lstdc++fs |
Deepak Kodihalli | 707a3e1 | 2017-06-14 03:56:12 -0500 | [diff] [blame] | 54 | |
| 55 | serialization_test_path_CPPFLAGS = $(test_cppflags) |
| 56 | serialization_test_path_CXXFLAGS = $(test_cxxflags) |
| 57 | serialization_test_path_SOURCES = serialization_test_path.cpp |
| 58 | serialization_test_path_LDADD = $(test_ldadd) |
| 59 | serialization_test_path_LDFLAGS = \ |
| 60 | $(test_ldflags) \ |
| 61 | -lstdc++fs |
| 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 = \ |
| 68 | $(test_ldflags) \ |
| 69 | -lstdc++fs |
Deepak Kodihalli | 834dcf1 | 2018-08-30 05:05:46 -0500 | [diff] [blame] | 70 | |
| 71 | remote_logging_test_address_CPPFLAGS = $(test_cppflags) |
| 72 | remote_logging_test_address_CXXFLAGS = $(test_cxxflags) |
| 73 | remote_logging_test_address_SOURCES = remote_logging_test_address.cpp |
| 74 | remote_logging_test_address_LDADD = $(remote_logging_test_ldadd) |
| 75 | remote_logging_test_address_LDFLAGS = \ |
| 76 | $(test_ldflags) \ |
| 77 | -lstdc++fs |
| 78 | |
| 79 | remote_logging_test_port_CPPFLAGS = $(test_cppflags) |
| 80 | remote_logging_test_port_CXXFLAGS = $(test_cxxflags) |
| 81 | remote_logging_test_port_SOURCES = remote_logging_test_port.cpp |
| 82 | remote_logging_test_port_LDADD = $(remote_logging_test_ldadd) |
| 83 | remote_logging_test_port_LDFLAGS = \ |
| 84 | $(test_ldflags) \ |
| 85 | -lstdc++fs |
Deepak Kodihalli | 5ac1bde | 2018-08-30 05:38:44 -0500 | [diff] [blame] | 86 | |
| 87 | remote_logging_test_config_CPPFLAGS = $(test_cppflags) |
| 88 | remote_logging_test_config_CXXFLAGS = $(test_cxxflags) |
| 89 | remote_logging_test_config_SOURCES = remote_logging_test_config.cpp |
| 90 | remote_logging_test_config_LDADD = $(remote_logging_test_ldadd) |
| 91 | remote_logging_test_config_LDFLAGS = \ |
| 92 | $(test_ldflags) \ |
| 93 | -lstdc++fs |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 94 | |
Patrick Venture | 31552c0 | 2018-12-03 19:09:55 -0800 | [diff] [blame] | 95 | sdjournal_mock_test_CPPFLAGS = $(test_cppflags) |
| 96 | sdjournal_mock_test_CXXFLAGS = $(test_cxxflags) |
| 97 | sdjournal_mock_test_SOURCES = sdtest.cpp |
| 98 | sdjournal_mock_test_LDADD = $(top_builddir)/sdjournal.o |
| 99 | sdjournal_mock_test_LDFLAGS = $(test_ldflags) |
| 100 | |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 101 | # TODO Remove once the test-case failure is resolved openbmc/phosphor-logging#11 |
| 102 | XFAIL_TESTS = elog_errorwrap_test |