blob: 3d74c88a0f829d0af1447339645b5f6f8818daaa [file] [log] [blame]
Patrick Venture90f9bb52019-03-06 09:39:11 -08001AM_CPPFLAGS = \
2 -I$(top_srcdir)/ \
3 $(GTEST_CFLAGS) \
4 $(GMOCK_CFLAGS) \
Patrick Venture7a841b62018-06-13 09:39:46 -07005 $(SDBUSPLUS_CFLAGS) \
Patrick Venture4cf39862018-12-06 10:24:44 -08006 $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \
Patrick Venture94feffa2019-03-06 09:54:49 -08007 $(PHOSPHOR_LOGGING_CFLAGS) \
8 $(CODE_COVERAGE_CPPFLAGS)
9AM_CFLAGS = \
10 $(CODE_COVERAGE_CFLAGS)
11AM_CXXFLAGS = \
12 $(CODE_COVERAGE_CXXFLAGS)
Patrick Venture2e3ecb52018-06-22 08:18:19 -070013AM_LDFLAGS = \
Patrick Venture90f9bb52019-03-06 09:39:11 -080014 $(GTEST_LIBS) \
Patrick Venture7a841b62018-06-13 09:39:46 -070015 $(GMOCK_LIBS) \
Patrick Venture90f9bb52019-03-06 09:39:11 -080016 -lgmock_main \
Patrick Venture7a841b62018-06-13 09:39:46 -070017 $(OESDK_TESTCASE_FLAGS) \
18 $(SDBUSPLUS_LIBS) \
Patrick Venture4cf39862018-12-06 10:24:44 -080019 $(PHOSPHOR_DBUS_INTERFACES_LIBS) \
Patrick Venture94feffa2019-03-06 09:54:49 -080020 $(PHOSPHOR_LOGGING_LIBS) \
21 $(CODE_COVERAGE_LIBS)
Patrick Venture7a841b62018-06-13 09:39:46 -070022
23# Run all 'check' test programs
Patrick Venture1fa9aab2018-06-11 10:46:49 -070024check_PROGRAMS = sensor_manager_unittest sensor_pluggable_unittest \
Patrick Venture3349ef22018-06-12 14:09:29 -070025 sensor_host_unittest util_unittest pid_zone_unittest \
Patrick Venture0ef1faf2018-06-13 12:50:53 -070026 pid_thermalcontroller_unittest pid_fancontroller_unittest \
James Feist3dfaafd2018-09-20 15:46:58 -070027 pid_stepwisecontroller_unittest \
Patrick Ventureeeeb8672019-02-08 11:47:42 -080028 dbus_passive_unittest dbus_active_unittest \
Patrick Venture5426c342019-02-11 12:03:30 -080029 sensors_json_unittest pid_json_unittest json_parse_unittest
Patrick Venture7a841b62018-06-13 09:39:46 -070030TESTS = $(check_PROGRAMS)
Patrick Venturefe75b192018-06-08 11:19:43 -070031
32# Until libconfig is mocked out or replaced, include it.
33sensor_manager_unittest_SOURCES = sensor_manager_unittest.cpp
34sensor_manager_unittest_LDADD = $(top_builddir)/sensors/manager.o
Patrick Venturee31ee6d2018-06-08 18:49:27 -070035
36sensor_pluggable_unittest_SOURCES = sensor_pluggable_unittest.cpp
37sensor_pluggable_unittest_LDADD = $(top_builddir)/sensors/pluggable.o
Patrick Venture1fa9aab2018-06-11 10:46:49 -070038
39sensor_host_unittest_SOURCES = sensor_host_unittest.cpp
40sensor_host_unittest_LDADD = $(top_builddir)/sensors/host.o
Patrick Ventureda064282018-06-12 19:33:47 -070041
42util_unittest_SOURCES = util_unittest.cpp
43util_unittest_LDADD = $(top_builddir)/util.o
Patrick Venturea58197c2018-06-11 15:29:45 -070044
45pid_zone_unittest_SOURCES = pid_zone_unittest.cpp
46pid_zone_unittest_LDADD = $(top_builddir)/pid/ec/pid.o \
James Feist22c257a2018-08-31 14:07:12 -070047 $(top_builddir)/sensors/manager.o $(top_builddir)/pid/pidcontroller.o \
Patrick Venturec32e3fc2019-02-28 10:01:11 -080048 $(top_builddir)/pid/zone.o $(top_builddir)/pid/tuning.o
Patrick Venture3349ef22018-06-12 14:09:29 -070049
50pid_thermalcontroller_unittest_SOURCES = pid_thermalcontroller_unittest.cpp
51pid_thermalcontroller_unittest_LDADD = $(top_builddir)/pid/ec/pid.o \
James Feist22c257a2018-08-31 14:07:12 -070052 $(top_builddir)/pid/util.o $(top_builddir)/pid/pidcontroller.o \
Patrick Venture3349ef22018-06-12 14:09:29 -070053 $(top_builddir)/pid/thermalcontroller.o
Patrick Venture566a1512018-06-12 14:51:07 -070054
James Feist3dfaafd2018-09-20 15:46:58 -070055pid_stepwisecontroller_unittest_SOURCES = pid_stepwisecontroller_unittest.cpp
56pid_stepwisecontroller_unittest_LDADD = $(top_builddir)/pid/ec/stepwise.o \
57 $(top_builddir)/pid/util.o $(top_builddir)/pid/stepwisecontroller.o
58
Patrick Venture566a1512018-06-12 14:51:07 -070059pid_fancontroller_unittest_SOURCES = pid_fancontroller_unittest.cpp
60pid_fancontroller_unittest_LDADD = $(top_builddir)/pid/ec/pid.o \
James Feist22c257a2018-08-31 14:07:12 -070061 $(top_builddir)/pid/util.o $(top_builddir)/pid/pidcontroller.o \
Patrick Venturec32e3fc2019-02-28 10:01:11 -080062 $(top_builddir)/pid/fancontroller.o $(top_builddir)/pid/tuning.o
Patrick Venture0ef1faf2018-06-13 12:50:53 -070063
64dbus_passive_unittest_SOURCES = dbus_passive_unittest.cpp
65dbus_passive_unittest_LDADD = $(top_builddir)/dbus/util.o \
James Feist98b704e2019-06-03 16:24:53 -070066 $(top_builddir)/dbus/dbuspassive.o $(top_builddir)/dbus/dbuspassiveredundancy.o
Patrick Venture25243232018-06-14 10:34:34 -070067
68dbus_active_unittest_SOURCES = dbus_active_unittest.cpp
69dbus_active_unittest_LDADD = $(top_builddir)/dbus/dbusactiveread.o
Patrick Ventureeeeb8672019-02-08 11:47:42 -080070
71sensors_json_unittest_SOURCES = sensors_json_unittest.cpp
72sensors_json_unittest_LDADD = $(top_builddir)/sensors/buildjson.o
Patrick Ventured1491722019-02-08 14:37:45 -080073
74pid_json_unittest_SOURCES = pid_json_unittest.cpp
75pid_json_unittest_LDADD = $(top_builddir)/pid/buildjson.o
Patrick Venture5426c342019-02-11 12:03:30 -080076
77json_parse_unittest_SOURCES = json_parse_unittest.cpp
78json_parse_unittest_LDADD = $(top_builddir)/build/buildjson.o