blob: 9bd97b18779f5daceb4a8cbc2db56027f30a30fd [file] [edit]
gtest = dependency('gtest', main: true, disabler: true, required: false)
gmock = dependency('gmock', disabler: true, required: false)
if not gtest.found() or not gmock.found()
gtest_opts = import('cmake').subproject_options()
gtest_opts.add_cmake_defines({'CMAKE_CXX_FLAGS': '-Wno-pedantic'})
gtest_proj = import('cmake').subproject(
'googletest',
options: gtest_opts,
required: false)
if gtest_proj.found()
gtest = declare_dependency(
dependencies: [
dependency('threads'),
gtest_proj.dependency('gtest'),
gtest_proj.dependency('gtest_main'),
])
gmock = gtest_proj.dependency('gmock')
else
assert(not build_tests.enabled(), 'Googletest is required')
endif
endif
tests = [
'test-oem-event',
'test-soc-reset-me'
]
foreach t : tests
test(
t,
executable(
t.underscorify(),
t + '.cpp',
dependencies: [pldm_oem_google_dep, gtest, gmock]))
endforeach