blob: 06267e9723dbd8e112195b2849bbc6bea3fb2361 [file] [log] [blame]
William A. Kennington IIIbb259732021-05-05 12:35:01 -07001gtest = dependency('gtest', main: true, disabler: true, required: false)
2gmock = dependency('gmock', disabler: true, required: false)
3if not gtest.found() or not gmock.found()
4 gtest_opts = import('cmake').subproject_options()
5 gtest_opts.add_cmake_defines({'CMAKE_CXX_FLAGS': '-Wno-pedantic'})
6 gtest_proj = import('cmake').subproject(
7 'googletest',
8 options: gtest_opts,
9 required: false)
10 if gtest_proj.found()
11 gtest = declare_dependency(
12 dependencies: [
13 dependency('threads'),
14 gtest_proj.dependency('gtest'),
15 gtest_proj.dependency('gtest_main'),
16 ])
17 gmock = gtest_proj.dependency('gmock')
18 else
Patrick Williams58bd8ba2023-11-29 06:44:49 -060019 assert(not get_option('tests').allowed(), 'Googletest is required')
William A. Kennington IIIbb259732021-05-05 12:35:01 -070020 endif
21endif
22
23tests = [
Brad Bishop59061732019-10-07 15:48:37 -040024 'average_unittest',
Brad Bishop59061732019-10-07 15:48:37 -040025 'env_unittest',
Brad Bishop59061732019-10-07 15:48:37 -040026 'fanpwm_unittest',
Brad Bishop59061732019-10-07 15:48:37 -040027 'hwmon_unittest',
Brad Bishop59061732019-10-07 15:48:37 -040028 'hwmonio_default_unittest',
Brad Bishop59061732019-10-07 15:48:37 -040029 'sensor_unittest',
William A. Kennington IIIbb259732021-05-05 12:35:01 -070030]
31
32foreach t : tests
33 test(
34 t,
35 executable(
36 t.underscorify(),
37 t + '.cpp',
38 'gpio.cpp',
39 implicit_include_directories: false,
40 dependencies: [hwmon_dep, gtest, gmock]))
41endforeach