Priyanga | fb4bec9 | 2019-03-25 11:51:31 +0530 | [diff] [blame] | 1 | AM_CPPFLAGS = -I$(top_srcdir) $(CODE_COVERAGE_CPPFLAGS) |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 2 | |
| 3 | TESTS = $(check_PROGRAMS) |
| 4 | |
| 5 | check_PROGRAMS = \ |
| 6 | libpldm_base_test \ |
Sampa Misra | 0db1dfa | 2019-03-19 00:15:31 -0500 | [diff] [blame] | 7 | libpldm_platform_test \ |
Sampa Misra | 032bd50 | 2019-03-06 05:03:22 -0600 | [diff] [blame] | 8 | libpldmresponder_base_test \ |
| 9 | libpldm_bios_test \ |
Deepak Kodihalli | c6e8fb5 | 2019-05-02 08:35:31 -0500 | [diff] [blame] | 10 | libpldmresponder_bios_test \ |
| 11 | libpldmresponder_pdr_state_effecter_test |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 12 | |
Jinu Joy Thomas | 7f57f44 | 2019-06-13 20:38:49 +0530 | [diff] [blame] | 13 | if OEM_IBM |
| 14 | check_PROGRAMS += \ |
| 15 | libpldmoem_fileio_test \ |
| 16 | libpldmoemresponder_fileio_test |
| 17 | endif |
| 18 | |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 19 | test_cppflags = \ |
| 20 | -Igtest \ |
| 21 | $(GTEST_CPPFLAGS) \ |
| 22 | $(AM_CPPFLAGS) |
| 23 | |
| 24 | test_cxxflags = \ |
Priyanga | fb4bec9 | 2019-03-25 11:51:31 +0530 | [diff] [blame] | 25 | $(PTHREAD_CFLAGS) \ |
Jinu Joy Thomas | f666db1 | 2019-05-29 05:22:31 -0500 | [diff] [blame] | 26 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
| 27 | $(SDBUSPLUS_CFLAGS) \ |
Priyanga | fb4bec9 | 2019-03-25 11:51:31 +0530 | [diff] [blame] | 28 | $(CODE_COVERAGE_CXXFLAGS) |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 29 | |
| 30 | test_ldflags = \ |
| 31 | -lgtest_main \ |
| 32 | -lgtest \ |
| 33 | $(PTHREAD_LIBS) \ |
Jinu Joy Thomas | f666db1 | 2019-05-29 05:22:31 -0500 | [diff] [blame] | 34 | $(SDBUSPLUS_LIBS) \ |
| 35 | $(PHOSPHOR_LOGGING_LIBS) \ |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 36 | $(OESDK_TESTCASE_FLAGS) |
| 37 | |
Jinu Joy Thomas | 7f57f44 | 2019-06-13 20:38:49 +0530 | [diff] [blame] | 38 | if OEM_IBM |
| 39 | test_ldflags += \ |
Jinu Joy Thomas | 7f57f44 | 2019-06-13 20:38:49 +0530 | [diff] [blame] | 40 | -lgmock \ |
| 41 | -lstdc++fs |
| 42 | endif |
| 43 | |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 44 | libpldm_base_test_CPPFLAGS = $(test_cppflags) |
| 45 | libpldm_base_test_CXXFLAGS = $(test_cxxflags) |
| 46 | libpldm_base_test_LDFLAGS = $(test_ldflags) |
Deepak Kodihalli | a038624 | 2019-04-25 07:27:18 -0500 | [diff] [blame] | 47 | libpldm_base_test_LDADD = \ |
| 48 | $(top_builddir)/libpldm/libpldm_la-base.o \ |
| 49 | $(CODE_COVERAGE_LIBS) |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 50 | libpldm_base_test_SOURCES = libpldm_base_test.cpp |
| 51 | |
Sampa Misra | 0db1dfa | 2019-03-19 00:15:31 -0500 | [diff] [blame] | 52 | libpldm_platform_test_CPPFLAGS = $(test_cppflags) |
| 53 | libpldm_platform_test_CXXFLAGS = $(test_cxxflags) |
| 54 | libpldm_platform_test_LDFLAGS = $(test_ldflags) |
| 55 | libpldm_platform_test_LDADD = \ |
| 56 | $(top_builddir)/libpldm/libpldm_la-platform.o \ |
| 57 | $(top_builddir)/libpldm/libpldm_la-base.o \ |
| 58 | $(CODE_COVERAGE_LIBS) |
| 59 | libpldm_platform_test_SOURCES = libpldm_platform_test.cpp |
| 60 | |
Sampa Misra | 032bd50 | 2019-03-06 05:03:22 -0600 | [diff] [blame] | 61 | libpldm_bios_test_CPPFLAGS = $(test_cppflags) |
| 62 | libpldm_bios_test_CXXFLAGS = $(test_cxxflags) |
| 63 | libpldm_bios_test_LDFLAGS = $(test_ldflags) |
| 64 | libpldm_bios_test_LDADD = \ |
| 65 | $(top_builddir)/libpldm/libpldm_la-base.o \ |
| 66 | $(top_builddir)/libpldm/libpldm_la-bios.o \ |
| 67 | $(CODE_COVERAGE_LIBS) |
| 68 | libpldm_bios_test_SOURCES = libpldm_bios_test.cpp |
| 69 | |
| 70 | libpldmresponder_bios_test_CPPFLAGS = $(test_cppflags) |
| 71 | libpldmresponder_bios_test_CXXFLAGS = $(test_cxxflags) |
Deepak Kodihalli | a038624 | 2019-04-25 07:27:18 -0500 | [diff] [blame] | 72 | libpldmresponder_bios_test_LDFLAGS = \ |
| 73 | $(test_ldflags) \ |
| 74 | $(SDBUSPLUS_LIBS) |
Sampa Misra | 032bd50 | 2019-03-06 05:03:22 -0600 | [diff] [blame] | 75 | libpldmresponder_bios_test_LDADD = \ |
Jinu Joy Thomas | f666db1 | 2019-05-29 05:22:31 -0500 | [diff] [blame] | 76 | $(top_builddir)/pldmd-registration.o \ |
Sampa Misra | 032bd50 | 2019-03-06 05:03:22 -0600 | [diff] [blame] | 77 | $(top_builddir)/libpldmresponder/libpldmresponder_la-bios.o \ |
| 78 | $(top_builddir)/libpldmresponder/libpldmresponder_la-utils.o \ |
| 79 | $(top_builddir)/libpldm/libpldm_la-base.o \ |
| 80 | $(top_builddir)/libpldm/libpldm_la-bios.o \ |
Deepak Kodihalli | a038624 | 2019-04-25 07:27:18 -0500 | [diff] [blame] | 81 | $(CODE_COVERAGE_LIBS) \ |
| 82 | $(SDBUSPLUS_LIBS) |
Sampa Misra | 032bd50 | 2019-03-06 05:03:22 -0600 | [diff] [blame] | 83 | libpldmresponder_bios_test_SOURCES = \ |
| 84 | libpldmresponder_bios_test.cpp |
| 85 | |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 86 | libpldmresponder_base_test_CPPFLAGS = $(test_cppflags) |
| 87 | libpldmresponder_base_test_CXXFLAGS = $(test_cxxflags) |
| 88 | libpldmresponder_base_test_LDFLAGS = $(test_ldflags) |
| 89 | libpldmresponder_base_test_LDADD = \ |
Jinu Joy Thomas | f666db1 | 2019-05-29 05:22:31 -0500 | [diff] [blame] | 90 | $(top_builddir)/pldmd-registration.o \ |
Priyanga | fb4bec9 | 2019-03-25 11:51:31 +0530 | [diff] [blame] | 91 | $(top_builddir)/libpldm/libpldm_la-base.o \ |
Deepak Kodihalli | a038624 | 2019-04-25 07:27:18 -0500 | [diff] [blame] | 92 | $(top_builddir)/libpldmresponder/libpldmresponder_la-base.o \ |
| 93 | $(CODE_COVERAGE_LIBS) |
Deepak Kodihalli | 1b24f97 | 2019-02-01 04:09:13 -0600 | [diff] [blame] | 94 | libpldmresponder_base_test_SOURCES = libpldmresponder_base_test.cpp |
Jinu Joy Thomas | 7f57f44 | 2019-06-13 20:38:49 +0530 | [diff] [blame] | 95 | |
| 96 | if OEM_IBM |
| 97 | libpldmoem_fileio_test_CPPFLAGS = $(test_cppflags) \ |
| 98 | -I$(top_builddir)/oem/ibm/ \ |
| 99 | -I$(top_builddir)/libpldm/ |
| 100 | libpldmoem_fileio_test_CXXFLAGS = $(test_cxxflags) |
| 101 | libpldmoem_fileio_test_LDFLAGS = $(test_ldflags) |
| 102 | libpldmoem_fileio_test_LDADD = \ |
| 103 | $(top_builddir)/libpldm/libpldm_la-base.o \ |
| 104 | $(top_builddir)/oem/ibm/libpldm/libpldm_la-file_io.o |
| 105 | libpldmoem_fileio_test_SOURCES = $(top_builddir)/oem/ibm/test/libpldm_fileio_test.cpp |
| 106 | |
| 107 | libpldmoemresponder_fileio_test_CPPFLAGS = $(test_cppflags) \ |
| 108 | -I$(top_builddir)/oem/ibm/ \ |
| 109 | -I$(top_builddir)/libpldm/ |
| 110 | libpldmoemresponder_fileio_test_CXXFLAGS = $(test_cxxflags) |
| 111 | libpldmoemresponder_fileio_test_LDFLAGS = $(test_ldflags) |
| 112 | libpldmoemresponder_fileio_test_LDADD = \ |
Jinu Joy Thomas | f666db1 | 2019-05-29 05:22:31 -0500 | [diff] [blame] | 113 | $(top_builddir)/pldmd-registration.o \ |
Jinu Joy Thomas | 7f57f44 | 2019-06-13 20:38:49 +0530 | [diff] [blame] | 114 | $(top_builddir)/libpldm/libpldm_la-base.o \ |
| 115 | $(top_builddir)/oem/ibm/libpldm/libpldm_la-file_io.o \ |
Tom Joseph | 0c6d22c | 2019-06-26 09:58:41 +0530 | [diff] [blame] | 116 | $(top_builddir)/oem/ibm/libpldmresponder/libpldmresponder_la-file_io.o\ |
| 117 | $(top_builddir)/oem/ibm/libpldmresponder/libpldmresponder_la-file_table.o |
Jinu Joy Thomas | 7f57f44 | 2019-06-13 20:38:49 +0530 | [diff] [blame] | 118 | libpldmoemresponder_fileio_test_SOURCES = $(top_builddir)/oem/ibm/test/libpldmresponder_fileio_test.cpp |
| 119 | endif |
| 120 | |
Deepak Kodihalli | c6e8fb5 | 2019-05-02 08:35:31 -0500 | [diff] [blame] | 121 | libpldmresponder_pdr_state_effecter_test_CPPFLAGS = $(test_cppflags) |
| 122 | libpldmresponder_pdr_state_effecter_test_CXXFLAGS = $(test_cxxflags) |
| 123 | libpldmresponder_pdr_state_effecter_test_LDFLAGS = $(test_ldflags) |
| 124 | libpldmresponder_pdr_state_effecter_test_LDADD = \ |
| 125 | $(top_builddir)/libpldmresponder/libpldmresponder_la-pdr.o \ |
| 126 | $(top_builddir)/libpldmresponder/libpldmresponder_la-effecters.o \ |
| 127 | $(CODE_COVERAGE_LIBS) \ |
| 128 | $(SDBUSPLUS_LIBS) \ |
| 129 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 130 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 131 | -lstdc++fs |
| 132 | libpldmresponder_pdr_state_effecter_test_SOURCES = libpldmresponder_pdr_state_effecter_test.cpp |