blob: 9a9b060531335b44427863985ab38bcef4249e87 [file] [log] [blame]
William A. Kennington IIIa2d67e22020-02-19 12:17:39 -08001gtest = dependency('gtest', main: true, disabler: true, required: false)
2gmock = dependency('gmock', disabler: true, required: false)
3if not gtest.found() or not gmock.found()
William A. Kennington III83af3fa2021-01-31 15:22:54 -08004 gtest_proj = import('cmake').subproject(
5 'googletest',
6 cmake_options: [
7 '-DCMAKE_CXX_FLAGS=-Wno-pedantic',
8 ],
9 required: false)
William A. Kennington IIIa2d67e22020-02-19 12:17:39 -080010 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
19 assert(not build_tests.enabled(), 'Googletest is required')
20 endif
21endif
William A. Kennington III15982f62019-01-31 14:43:41 -080022
William A. Kennington III245495e2020-02-13 13:07:30 -080023gtests = [
William A. Kennington IIIe847ef82018-11-02 17:29:15 -070024 'handle/copyable',
William A. Kennington III7a5e2322018-11-02 17:28:35 -070025 'handle/managed',
William A. Kennington IIIbff0b0f2018-11-16 19:56:10 -080026 'util/cexec',
William A. Kennington III4ef36e72019-06-27 12:48:59 -070027 'util/string',
William A. Kennington III15982f62019-01-31 14:43:41 -080028]
29
William A. Kennington IIIeac9d472020-08-03 13:57:14 -070030if has_fd
31 gtests += [
32 'fd/dupable',
33 'fd/managed',
34 'fd/intf',
35 'fd/impl',
36 'fd/mock',
37 'fd/ops',
38 ]
39else
40 warning('Not testing file descriptor feature')
41endif
42
William A. Kennington III83af3fa2021-01-31 15:22:54 -080043if gtest.found() and gmock.found()
44 foreach t : gtests
45 test(t, executable(t.underscorify(), t + '.cpp',
46 build_by_default: false,
47 implicit_include_directories: false,
48 dependencies: [stdplus, gtest, gmock]))
49 endforeach
50endif
William A. Kennington III245495e2020-02-13 13:07:30 -080051
William A. Kennington III01db6622021-01-31 15:24:13 -080052# Switch to `catch2-with-main.pc` when 2.x supports it
53catch2 = dependency('catch2-with-main', required: false)
54if not catch2.found()
55 catch2 = dependency('catch2', required: false)
56 if catch2.found()
57 catch2_main = meson.get_compiler('cpp').find_library(
58 'Catch2WithMain', required: false)
59 if catch2_main.found()
60 catch2 = declare_dependency(
61 dependencies: [
62 catch2,
63 catch2_main,
64 ])
65 else
66 catch2 = declare_dependency(
67 link_with: static_library(
68 'catch2', 'catch2_main.cpp',
69 implicit_include_directories: false,
70 build_by_default: false,
71 dependencies: catch2),
72 dependencies: catch2)
73 endif
74 endif
75endif
76if not catch2.found()
William A. Kennington III245495e2020-02-13 13:07:30 -080077 catch2_proj = import('cmake').subproject(
78 'Catch2',
79 cmake_options: [
William A. Kennington III01db6622021-01-31 15:24:13 -080080 '-DBUILD_TESTING=OFF',
81 '-DCMAKE_CXX_FLAGS=-Wno-non-virtual-dtor',
William A. Kennington III245495e2020-02-13 13:07:30 -080082 ],
83 required: false)
84 if catch2_proj.found()
William A. Kennington III01db6622021-01-31 15:24:13 -080085 catch2 = declare_dependency(
86 dependencies: [
87 catch2_proj.dependency('Catch2'),
88 catch2_proj.dependency('Catch2WithMain'),
89 ])
William A. Kennington III245495e2020-02-13 13:07:30 -080090 else
91 assert(not build_tests.enabled(), 'Catch2 is required')
92 endif
93endif
94
95catch2_tests = [
William A. Kennington III770c5562020-02-13 13:07:42 -080096 'signal',
William A. Kennington IIIe0990382019-10-18 02:10:25 -070097 'raw',
William A. Kennington III245495e2020-02-13 13:07:30 -080098]
99
William A. Kennington III01db6622021-01-31 15:24:13 -0800100if catch2.found()
William A. Kennington III245495e2020-02-13 13:07:30 -0800101 foreach t : catch2_tests
102 test(t, executable(t.underscorify(), t + '.cpp',
William A. Kennington III31422352020-02-19 13:21:56 -0800103 build_by_default: false,
William A. Kennington III245495e2020-02-13 13:07:30 -0800104 implicit_include_directories: false,
William A. Kennington III01db6622021-01-31 15:24:13 -0800105 dependencies: [stdplus, span_dep, catch2]))
William A. Kennington III245495e2020-02-13 13:07:30 -0800106 endforeach
107endif