blob: fe2cc03c43ea616bb12b2672a7c4f0df9b42db6c [file] [log] [blame]
Zane Shelley80183912021-12-21 11:52:25 -06001# Get the gtest/gmock dependencies.
2gtest_dep = dependency('gtest', main: true, disabler: true, required: false)
3gmock_dep = dependency('gmock', disabler: true, required: false)
4if not gtest_dep.found() or not gmock_dep.found()
5 cmake = import('cmake')
6 gtest_proj = cmake.subproject('googletest',
7 required: false)
8 if gtest_proj.found()
9 gtest_dep = declare_dependency(
10 dependencies: [
11 dependency('threads'),
12 gtest_proj.dependency('gtest'),
13 gtest_proj.dependency('gtest_main'),
14 ]
15 )
16 gmock_dep = gtest_proj.dependency('gmock')
17 else
18 assert(not get_option('tests').enabled(),
19 'Googletest is required if tests are enabled')
20 endif
21endif
22
Zane Shelley9491cdb2022-02-01 10:40:45 -060023################################################################################
24
Zane Shelleyafc6acd2022-01-12 14:32:56 -060025# Compile the test dts into a binary for pdbg.
26pdbg_test_dtb = custom_target('build_pdbg_test_dtb',
Zane Shelley08c21c22022-01-26 16:58:18 -060027 input : files('pdbg-test.dts'),
28 output : 'pdbg-test.dtb',
Zane Shelleyafc6acd2022-01-12 14:32:56 -060029 command : [ find_program('dtc'), '-I', 'dts', '-O', 'dtb',
30 '-o', '@OUTPUT@', '@INPUT@' ])
31
Zane Shelleyd195b712022-01-26 13:26:34 -060032pdbg_env = 'PDBG_DTB=' + pdbg_test_dtb.full_path()
33
Zane Shelley08c21c22022-01-26 16:58:18 -060034################################################################################
35
austinfcui5dbebde2022-04-12 16:30:38 -050036# Add gtest/gmock dependency to the list of test dependencies.
Zane Shelley985388a2022-03-24 16:35:46 -050037test_deps = [
austinfcui5dbebde2022-04-12 16:30:38 -050038 test_util_deps,
Zane Shelley985388a2022-03-24 16:35:46 -050039 gtest_dep,
40]
41
42test_vars = [
43 pdbg_env,
Zane Shelley20ed74d2022-03-26 13:50:57 -050044 'LG2_FORCE_STDERR=true',
Zane Shelley985388a2022-03-24 16:35:46 -050045]
46
Zane Shelley69e37712022-03-24 16:43:03 -050047# Additional SRCs that are not (or should not be) included in libraries.
48# NOTE: Try to limit this, if possible, to prevent duplicate compilation.
49test_additional_srcs = [
austinfcui5dbebde2022-04-12 16:30:38 -050050 files(
Caleb Palmer1a4f0e72022-11-07 15:08:01 -060051 '../analyzer/filter-root-cause.cpp',
austinfcui5dbebde2022-04-12 16:30:38 -050052 '../analyzer/plugins/p10-plugins.cpp',
53 '../analyzer/plugins/p10-tod-plugins.cpp',
54 '../cli.cpp',
55 ),
56 pdbg_test_dtb
Zane Shelley248cbf82019-05-03 17:07:18 -050057]
58
Zane Shelley08c21c22022-01-26 16:58:18 -060059################################################################################
60
Zane Shelley69e37712022-03-24 16:43:03 -050061testcases = [
62 'test-bin-stream',
63 'test-ffdc-file',
64 'test-lpc-timeout',
65 'test-pdbg-dts',
66 'test-pll-unlock',
67 'test-resolution',
Caleb Palmer1a4f0e72022-11-07 15:08:01 -060068 'test-root-cause-filter',
Zane Shelley69e37712022-03-24 16:43:03 -050069 'test-tod-step-check-fault',
austinfcuid28d5f82022-04-28 16:20:39 -050070 'test-cli',
Zane Shelley08c21c22022-01-26 16:58:18 -060071]
Zane Shelley979e2872021-09-20 22:46:06 -050072
Zane Shelley69e37712022-03-24 16:43:03 -050073foreach tc : testcases
Zane Shelleye90b85d2021-12-17 17:24:49 -060074
Zane Shelley69e37712022-03-24 16:43:03 -050075 exe = executable(tc.underscorify(),
76 sources : [ files(tc + '.cpp'), test_additional_srcs ],
77 include_directories : incdir,
78 dependencies : test_deps,
79 cpp_args : test_args,
80 link_with : test_libs,
81 )
Zane Shelley08c21c22022-01-26 16:58:18 -060082
Zane Shelley69e37712022-03-24 16:43:03 -050083 test(tc, exe, env: test_vars)
Zane Shelley08c21c22022-01-26 16:58:18 -060084
Zane Shelley69e37712022-03-24 16:43:03 -050085endforeach
Zane Shelley08c21c22022-01-26 16:58:18 -060086
87################################################################################
88
Zane Shelley69e37712022-03-24 16:43:03 -050089testcases = [
90 'test-attention',
91 'test-end2end',
92 'test-util-data-file',
93 'test-ti-handler',
Zane Shelley08c21c22022-01-26 16:58:18 -060094]
95
Ben Tyner3a80c982022-10-21 12:49:41 -050096# allow more time for long running tests
97longtests = {
98 'test-end2end': 2,
99}
100
Zane Shelley69e37712022-03-24 16:43:03 -0500101foreach tc : testcases
Zane Shelley08c21c22022-01-26 16:58:18 -0600102
Zane Shelley69e37712022-03-24 16:43:03 -0500103 exe = executable(tc.underscorify(),
104 sources : [ files(tc + '.cpp'), test_additional_srcs ],
105 include_directories : incdir,
106 dependencies : test_deps,
107 cpp_args : test_args,
108 link_with : hwdiags_libs, # TODO: should use test_libs instead
109 )
Zane Shelley08c21c22022-01-26 16:58:18 -0600110
Ben Tyner3a80c982022-10-21 12:49:41 -0500111 test(tc, exe, env: test_vars, timeout: 30 * longtests.get(tc, 1))
Zane Shelley08c21c22022-01-26 16:58:18 -0600112
Zane Shelley69e37712022-03-24 16:43:03 -0500113endforeach
Zane Shelleyedfcbc32022-03-24 15:56:52 -0500114