blob: 40ac6248aaf3d0c905e212b7eca4b150f4a3ee2e [file] [log] [blame]
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -07001gtests = {
2 'cancel': [stdplus_dep, gtest_main_dep],
3 'exception': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIece19432023-07-15 03:17:24 -07004 'function_view': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -07005 'handle/copyable': [stdplus_dep, gtest_main_dep],
6 'handle/managed': [stdplus_dep, gtest_main_dep],
William A. Kennington III403cda22022-12-12 15:52:35 -08007 'hash': [stdplus_dep, gtest_main_dep],
William A. Kennington III85149ee2023-01-03 18:15:47 -08008 'hash/array': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIb07a2eb2023-01-03 18:14:40 -08009 'hash/tuple': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIb25086a2023-01-09 18:53:29 -080010 'net/addr/ether': [stdplus_dep, gtest_main_dep],
William A. Kennington III9330c872023-01-04 15:41:53 -080011 'net/addr/ip': [stdplus_dep, gtest_main_dep],
William A. Kennington III14dd4eb2023-01-12 10:51:12 -080012 'net/addr/subnet': [stdplus_dep, gtest_main_dep],
William A. Kennington III8c5f28c2022-12-07 01:21:36 -080013 'numeric/endian': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIcda3c1e2022-12-03 16:56:19 -080014 'numeric/str': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIcb9ddb62022-11-18 19:50:10 -080015 'pinned': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070016 'raw': [stdplus_dep, gmock_dep, gtest_main_dep],
17 'signal': [stdplus_dep, gtest_main_dep],
William A. Kennington III3c7107f2023-06-13 15:13:50 -070018 'str/buf': [stdplus_dep, gtest_main_dep],
William A. Kennington III60479702022-12-07 02:55:24 -080019 'str/cat': [stdplus_dep, gtest_main_dep],
William A. Kennington III385cd7d2023-06-07 13:39:53 -070020 'str/cexpr': [stdplus_dep, gtest_main_dep],
William A. Kennington III0e844d52022-12-06 23:57:32 -080021 'str/conv': [stdplus_dep, gmock_dep, gtest_main_dep],
William A. Kennington III521475e2022-12-12 16:51:44 -080022 'str/maps': [stdplus_dep, gmock_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070023 'util/cexec': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIdb1bdbc2023-01-09 16:02:13 -080024 'variant': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIf2ddf512022-09-20 15:36:44 -070025 'zstring': [stdplus_dep, gtest_main_dep],
William A. Kennington III61a81bc2022-09-19 17:46:49 -070026 'zstring_view': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070027}
William A. Kennington IIId7acddd2022-07-13 16:41:11 -070028
William A. Kennington III5a528022021-04-28 12:52:43 -070029if has_dl
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070030 gtests += {
31 'dl': [stdplus_dl_dep, gtest_main_dep],
32 }
William A. Kennington III5a528022021-04-28 12:52:43 -070033elif build_tests.enabled()
34 error('Not testing libdl feature')
35else
36 warning('Not testing libdl feature')
37endif
38
William A. Kennington IIIeac9d472020-08-03 13:57:14 -070039if has_fd
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070040 gtests += {
41 'fd/dupable': [stdplus_fd_dep],
42 'fd/managed': [stdplus_fd_dep],
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070043 'fd/fmt': [stdplus_fd_dep, stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070044 'fd/intf': [stdplus_fd_dep],
45 'fd/impl': [stdplus_fd_dep],
46 'fd/line': [stdplus_fd_dep, stdplus_dep, gmock_dep, gtest_main_dep],
47 'fd/mmap': [stdplus_fd_dep, gtest_main_dep],
48 'fd/mock': [stdplus_fd_dep, gmock_dep, gtest_main_dep],
49 'fd/ops': [stdplus_fd_dep, gtest_main_dep],
50 }
51 if has_gtest
52 gtests += {
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070053 'fd/atomic': [stdplus_fd_dep, stdplus_gtest_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070054 }
55 elif build_tests.enabled()
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070056 error('Not testing fd/atomic feature')
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070057 else
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070058 warning('Not testing fd/atomic feature')
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070059 endif
William A. Kennington III45754242021-04-28 12:48:31 -070060elif build_tests.enabled()
61 error('Not testing file descriptor feature')
William A. Kennington IIIeac9d472020-08-03 13:57:14 -070062else
63 warning('Not testing file descriptor feature')
64endif
65
William A. Kennington III5c20da22021-06-18 16:44:55 -070066if has_io_uring
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070067 gtests += {
68 'io_uring': [stdplus_io_uring_dep, stdplus_dep, gmock_dep, gtest_main_dep],
69 }
William A. Kennington III5c20da22021-06-18 16:44:55 -070070elif build_tests.enabled()
71 error('Not testing io_uring feature')
72else
73 warning('Not testing io_uring feature')
74endif
75
William A. Kennington III953de362022-07-13 17:32:55 -070076if has_gtest
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070077 gtests += {
78 'gtest/tmp': [stdplus_gtest_dep, gtest_main_dep],
79 }
William A. Kennington III953de362022-07-13 17:32:55 -070080elif build_tests.enabled()
81 error('Not testing gtest lib feature')
82else
83 warning('Not testing gtest lib feature')
84endif
85
William A. Kennington IIIb4674602022-08-24 14:54:37 -070086add_test_setup(
87 'stdplus',
88 exe_wrapper: run_with_tmp,
89 env: {'TMPTMPL': 'stdplus-test.XXXXXXXXXX'},
90 is_default: true)
91
92add_test_setup(
93 'valgrind',
94 exe_wrapper: [run_with_tmp, 'valgrind'],
95 env: {'TMPTMPL': 'stdplus-test.XXXXXXXXXX'})
96
William A. Kennington III953de362022-07-13 17:32:55 -070097if gtest_dep.found() and gmock_dep.found()
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070098 foreach t, deps : gtests
William A. Kennington III953de362022-07-13 17:32:55 -070099 test(
100 t,
William A. Kennington IIIb4674602022-08-24 14:54:37 -0700101 executable(
William A. Kennington III953de362022-07-13 17:32:55 -0700102 t.underscorify(), t + '.cpp',
103 build_by_default: false,
104 implicit_include_directories: false,
William A. Kennington III1cad7d72023-06-06 13:50:01 -0700105 cpp_args: '-Wno-missing-braces',
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -0700106 dependencies: deps))
William A. Kennington III83af3fa2021-01-31 15:22:54 -0800107 endforeach
108endif