blob: e4e2828c56afd3901fc9b3216966cc7c7dde5071 [file] [log] [blame] [edit]
gtest = dependency('gtest', main: true)
gmock = dependency('gmock')
tests = [
'handler_unittest',
'handler_open_unittest',
'handler_readwrite_unittest',
'handler_statclose_unittest',
]
foreach t : tests
test(
t,
executable(
t.underscorify(),
t + '.cpp',
'../handler.cpp',
include_directories: ['../', root_inc],
dependencies: [smbiosstore_common_deps, gtest, gmock],
),
protocol: 'gtest',
)
endforeach