blob: ab788ff0976cdd0ca820ea4fa0478fe42985db76 [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],
4 'handle/copyable': [stdplus_dep, gtest_main_dep],
5 'handle/managed': [stdplus_dep, gtest_main_dep],
William A. Kennington III403cda22022-12-12 15:52:35 -08006 'hash': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIb07a2eb2023-01-03 18:14:40 -08007 'hash/tuple': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIcb9ddb62022-11-18 19:50:10 -08008 'pinned': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -07009 'raw': [stdplus_dep, gmock_dep, gtest_main_dep],
10 'signal': [stdplus_dep, gtest_main_dep],
William A. Kennington III60479702022-12-07 02:55:24 -080011 'str/cat': [stdplus_dep, gtest_main_dep],
William A. Kennington III48a470a2022-12-10 17:09:59 -080012 'str/cexpr': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070013 'util/cexec': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIf2ddf512022-09-20 15:36:44 -070014 'zstring': [stdplus_dep, gtest_main_dep],
William A. Kennington III61a81bc2022-09-19 17:46:49 -070015 'zstring_view': [stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070016}
William A. Kennington IIId7acddd2022-07-13 16:41:11 -070017
William A. Kennington III5a528022021-04-28 12:52:43 -070018if has_dl
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070019 gtests += {
20 'dl': [stdplus_dl_dep, gtest_main_dep],
21 }
William A. Kennington III5a528022021-04-28 12:52:43 -070022elif build_tests.enabled()
23 error('Not testing libdl feature')
24else
25 warning('Not testing libdl feature')
26endif
27
William A. Kennington IIIeac9d472020-08-03 13:57:14 -070028if has_fd
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070029 gtests += {
30 'fd/dupable': [stdplus_fd_dep],
31 'fd/managed': [stdplus_fd_dep],
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070032 'fd/fmt': [stdplus_fd_dep, stdplus_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070033 'fd/intf': [stdplus_fd_dep],
34 'fd/impl': [stdplus_fd_dep],
35 'fd/line': [stdplus_fd_dep, stdplus_dep, gmock_dep, gtest_main_dep],
36 'fd/mmap': [stdplus_fd_dep, gtest_main_dep],
37 'fd/mock': [stdplus_fd_dep, gmock_dep, gtest_main_dep],
38 'fd/ops': [stdplus_fd_dep, gtest_main_dep],
39 }
40 if has_gtest
41 gtests += {
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070042 'fd/atomic': [stdplus_fd_dep, stdplus_gtest_dep, gtest_main_dep],
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070043 }
44 elif build_tests.enabled()
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070045 error('Not testing fd/atomic feature')
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070046 else
William A. Kennington IIIaa4fcfc2022-08-23 16:35:10 -070047 warning('Not testing fd/atomic feature')
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070048 endif
William A. Kennington III45754242021-04-28 12:48:31 -070049elif build_tests.enabled()
50 error('Not testing file descriptor feature')
William A. Kennington IIIeac9d472020-08-03 13:57:14 -070051else
52 warning('Not testing file descriptor feature')
53endif
54
William A. Kennington III5c20da22021-06-18 16:44:55 -070055if has_io_uring
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070056 gtests += {
57 'io_uring': [stdplus_io_uring_dep, stdplus_dep, gmock_dep, gtest_main_dep],
58 }
William A. Kennington III5c20da22021-06-18 16:44:55 -070059elif build_tests.enabled()
60 error('Not testing io_uring feature')
61else
62 warning('Not testing io_uring feature')
63endif
64
William A. Kennington III953de362022-07-13 17:32:55 -070065if has_gtest
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070066 gtests += {
67 'gtest/tmp': [stdplus_gtest_dep, gtest_main_dep],
68 }
William A. Kennington III953de362022-07-13 17:32:55 -070069elif build_tests.enabled()
70 error('Not testing gtest lib feature')
71else
72 warning('Not testing gtest lib feature')
73endif
74
William A. Kennington IIIb4674602022-08-24 14:54:37 -070075add_test_setup(
76 'stdplus',
77 exe_wrapper: run_with_tmp,
78 env: {'TMPTMPL': 'stdplus-test.XXXXXXXXXX'},
79 is_default: true)
80
81add_test_setup(
82 'valgrind',
83 exe_wrapper: [run_with_tmp, 'valgrind'],
84 env: {'TMPTMPL': 'stdplus-test.XXXXXXXXXX'})
85
William A. Kennington III953de362022-07-13 17:32:55 -070086if gtest_dep.found() and gmock_dep.found()
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070087 foreach t, deps : gtests
William A. Kennington III953de362022-07-13 17:32:55 -070088 test(
89 t,
William A. Kennington IIIb4674602022-08-24 14:54:37 -070090 executable(
William A. Kennington III953de362022-07-13 17:32:55 -070091 t.underscorify(), t + '.cpp',
92 build_by_default: false,
93 implicit_include_directories: false,
William A. Kennington IIIef2c0b72022-08-24 15:12:53 -070094 dependencies: deps))
William A. Kennington III83af3fa2021-01-31 15:22:54 -080095 endforeach
96endif