blob: a0c37a1bbe333af63c3227f97b7f89231701fe6a [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 III0475b6d2023-07-21 14:28:54 -070016 'print': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070017 'raw': [stdplus_dep, gmock_dep, gtest_main_dep],
18 'signal': [stdplus_dep, gtest_main_dep],
William A. Kennington III3c7107f2023-06-13 15:13:50 -070019 'str/buf': [stdplus_dep, gtest_main_dep],
William A. Kennington III60479702022-12-07 02:55:24 -080020 'str/cat': [stdplus_dep, gtest_main_dep],
William A. Kennington III385cd7d2023-06-07 13:39:53 -070021 'str/cexpr': [stdplus_dep, gtest_main_dep],
William A. Kennington III0e844d52022-12-06 23:57:32 -080022 'str/conv': [stdplus_dep, gmock_dep, gtest_main_dep],
William A. Kennington III521475e2022-12-12 16:51:44 -080023 'str/maps': [stdplus_dep, gmock_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070024 'util/cexec': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIdb1bdbc2023-01-09 16:02:13 -080025 'variant': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIf2ddf512022-09-20 15:36:44 -070026 'zstring': [stdplus_dep, gtest_main_dep],
William A. Kennington III61a81bc2022-09-19 17:46:49 -070027 'zstring_view': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070028}
William A. Kennington IIId7acddd2022-07-13 16:41:11 -070029
William A. Kennington III5a528022021-04-28 12:52:43 -070030if has_dl
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070031 gtests += {
32 'dl': [stdplus_dl_dep, gtest_main_dep],
33 }
William A. Kennington III5a528022021-04-28 12:52:43 -070034elif build_tests.enabled()
35 error('Not testing libdl feature')
36else
37 warning('Not testing libdl feature')
38endif
39
William A. Kennington IIIeac9d472020-08-03 13:57:14 -070040if has_fd
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070041 gtests += {
42 'fd/dupable': [stdplus_fd_dep],
43 'fd/managed': [stdplus_fd_dep],
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070044 'fd/fmt': [stdplus_fd_dep, stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070045 'fd/intf': [stdplus_fd_dep],
46 'fd/impl': [stdplus_fd_dep],
47 'fd/line': [stdplus_fd_dep, stdplus_dep, gmock_dep, gtest_main_dep],
48 'fd/mmap': [stdplus_fd_dep, gtest_main_dep],
49 'fd/mock': [stdplus_fd_dep, gmock_dep, gtest_main_dep],
50 'fd/ops': [stdplus_fd_dep, gtest_main_dep],
51 }
52 if has_gtest
53 gtests += {
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070054 'fd/atomic': [stdplus_fd_dep, stdplus_gtest_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070055 }
56 elif build_tests.enabled()
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070057 error('Not testing fd/atomic feature')
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070058 else
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070059 warning('Not testing fd/atomic feature')
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070060 endif
William A. Kennington III45754242021-04-28 12:48:31 -070061elif build_tests.enabled()
62 error('Not testing file descriptor feature')
William A. Kennington IIIeac9d472020-08-03 13:57:14 -070063else
64 warning('Not testing file descriptor feature')
65endif
66
William A. Kennington III5c20da22021-06-18 16:44:55 -070067if has_io_uring
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070068 gtests += {
69 'io_uring': [stdplus_io_uring_dep, stdplus_dep, gmock_dep, gtest_main_dep],
70 }
William A. Kennington III5c20da22021-06-18 16:44:55 -070071elif build_tests.enabled()
72 error('Not testing io_uring feature')
73else
74 warning('Not testing io_uring feature')
75endif
76
William A. Kennington III953de362022-07-13 17:32:55 -070077if has_gtest
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070078 gtests += {
79 'gtest/tmp': [stdplus_gtest_dep, gtest_main_dep],
80 }
William A. Kennington III953de362022-07-13 17:32:55 -070081elif build_tests.enabled()
82 error('Not testing gtest lib feature')
83else
84 warning('Not testing gtest lib feature')
85endif
86
William A. Kennington IIIb4674602022-08-24 14:54:37 -070087add_test_setup(
88 'stdplus',
89 exe_wrapper: run_with_tmp,
90 env: {'TMPTMPL': 'stdplus-test.XXXXXXXXXX'},
91 is_default: true)
92
93add_test_setup(
94 'valgrind',
95 exe_wrapper: [run_with_tmp, 'valgrind'],
96 env: {'TMPTMPL': 'stdplus-test.XXXXXXXXXX'})
97
William A. Kennington III953de362022-07-13 17:32:55 -070098if gtest_dep.found() and gmock_dep.found()
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070099 foreach t, deps : gtests
William A. Kennington III953de362022-07-13 17:32:55 -0700100 test(
101 t,
William A. Kennington IIIb4674602022-08-24 14:54:37 -0700102 executable(
William A. Kennington III953de362022-07-13 17:32:55 -0700103 t.underscorify(), t + '.cpp',
104 build_by_default: false,
105 implicit_include_directories: false,
William A. Kennington III1cad7d72023-06-06 13:50:01 -0700106 cpp_args: '-Wno-missing-braces',
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -0700107 dependencies: deps))
William A. Kennington III83af3fa2021-01-31 15:22:54 -0800108 endforeach
109endif