Zane Shelley | 8018391 | 2021-12-21 11:52:25 -0600 | [diff] [blame] | 1 | # Get the gtest/gmock dependencies. |
| 2 | gtest_dep = dependency('gtest', main: true, disabler: true, required: false) |
| 3 | gmock_dep = dependency('gmock', disabler: true, required: false) |
| 4 | if 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 |
| 21 | endif |
| 22 | |
Zane Shelley | 9491cdb | 2022-02-01 10:40:45 -0600 | [diff] [blame] | 23 | ################################################################################ |
| 24 | |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 25 | # NOTE: We cannot link to `util_lib` because that is built without |
| 26 | # `-DTEST_TRACE` and any of the util functions that use `trace.hpp` will |
| 27 | # throw a linker error because we don't have access to phosphor-logging |
| 28 | # in test ... yet. |
| 29 | |
Zane Shelley | 0c44c2f | 2020-06-05 17:14:31 -0500 | [diff] [blame] | 30 | test_arg = [ |
| 31 | '-DTEST_TRACE', |
Zane Shelley | 9491cdb | 2022-02-01 10:40:45 -0600 | [diff] [blame] | 32 | package_args, |
Zane Shelley | 0c44c2f | 2020-06-05 17:14:31 -0500 | [diff] [blame] | 33 | ] |
| 34 | |
Zane Shelley | afc6acd | 2022-01-12 14:32:56 -0600 | [diff] [blame] | 35 | # Compile the test dts into a binary for pdbg. |
| 36 | pdbg_test_dtb = custom_target('build_pdbg_test_dtb', |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 37 | input : files('pdbg-test.dts'), |
| 38 | output : 'pdbg-test.dtb', |
Zane Shelley | afc6acd | 2022-01-12 14:32:56 -0600 | [diff] [blame] | 39 | command : [ find_program('dtc'), '-I', 'dts', '-O', 'dtb', |
| 40 | '-o', '@OUTPUT@', '@INPUT@' ]) |
| 41 | |
Zane Shelley | d195b71 | 2022-01-26 13:26:34 -0600 | [diff] [blame] | 42 | pdbg_env = 'PDBG_DTB=' + pdbg_test_dtb.full_path() |
| 43 | |
Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame] | 44 | # end2end code exerciser for experiment and testing |
| 45 | subdir('end2end') |
| 46 | |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 47 | ################################################################################ |
| 48 | |
| 49 | tc = 'test-bin-stream' |
| 50 | |
| 51 | src = [ |
| 52 | files( |
| 53 | tc + '.cpp', |
| 54 | ), |
Zane Shelley | 248cbf8 | 2019-05-03 17:07:18 -0500 | [diff] [blame] | 55 | ] |
| 56 | |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 57 | dep = [ gtest_dep ] |
Zane Shelley | cb766a4 | 2022-01-12 17:50:23 -0600 | [diff] [blame] | 58 | |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 59 | var = [ ] |
| 60 | |
| 61 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 62 | cpp_args: test_arg, include_directories: incdir) |
| 63 | |
| 64 | test(tc, exe, env: var) |
| 65 | |
| 66 | ################################################################################ |
| 67 | |
| 68 | tc = 'test-ffdc-file' |
| 69 | |
| 70 | src = [ |
| 71 | files( |
| 72 | tc + '.cpp', |
Zane Shelley | cb766a4 | 2022-01-12 17:50:23 -0600 | [diff] [blame] | 73 | '../util/ffdc_file.cpp', |
Zane Shelley | cb766a4 | 2022-01-12 17:50:23 -0600 | [diff] [blame] | 74 | '../util/temporary_file.cpp', |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 75 | ), |
| 76 | ] |
Zane Shelley | 979e287 | 2021-09-20 22:46:06 -0500 | [diff] [blame] | 77 | |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 78 | dep = [ gtest_dep ] |
Zane Shelley | e90b85d | 2021-12-17 17:24:49 -0600 | [diff] [blame] | 79 | |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 80 | var = [ ] |
| 81 | |
| 82 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 83 | cpp_args: test_arg, include_directories: incdir) |
| 84 | |
| 85 | test(tc, exe, env: var) |
| 86 | |
| 87 | ################################################################################ |
| 88 | |
| 89 | tc = 'test-lpc-timeout' |
| 90 | |
| 91 | src = [ |
| 92 | files( |
| 93 | tc + '.cpp', |
| 94 | '../analyzer/plugins/p10-plugins.cpp', |
| 95 | '../analyzer/service_data.cpp', |
| 96 | '../util/pdbg.cpp', |
| 97 | 'pdbg-sim-only.cpp', |
| 98 | ), |
| 99 | pdbg_test_dtb, |
| 100 | ] |
| 101 | |
| 102 | dep = [ libhei_dep, libpdbg_dep, gtest_dep ] |
| 103 | |
| 104 | var = [ pdbg_env ] |
| 105 | |
| 106 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 107 | cpp_args: test_arg, include_directories: incdir) |
| 108 | |
| 109 | test(tc, exe, env: var) |
| 110 | |
| 111 | ################################################################################ |
| 112 | |
| 113 | tc = 'test-pdbg-dts' |
| 114 | |
| 115 | src = [ |
| 116 | files( |
| 117 | tc + '.cpp', |
| 118 | '../util/pdbg.cpp', |
| 119 | ), |
| 120 | pdbg_test_dtb, |
| 121 | ] |
| 122 | |
| 123 | dep = [ libhei_dep, libpdbg_dep, gtest_dep ] |
| 124 | |
| 125 | var = [ pdbg_env ] |
| 126 | |
| 127 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 128 | cpp_args: test_arg, include_directories: incdir) |
| 129 | |
| 130 | test(tc, exe, env: var) |
| 131 | |
| 132 | ################################################################################ |
| 133 | |
| 134 | tc = 'test-pll-unlock' |
| 135 | |
| 136 | src = [ |
| 137 | files( |
| 138 | tc + '.cpp', |
| 139 | '../analyzer/plugins/p10-plugins.cpp', |
Zane Shelley | 9491cdb | 2022-02-01 10:40:45 -0600 | [diff] [blame] | 140 | '../analyzer/ras-data/ras-data-parser.cpp', |
| 141 | '../analyzer/resolution.cpp', |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 142 | '../analyzer/service_data.cpp', |
Zane Shelley | 9491cdb | 2022-02-01 10:40:45 -0600 | [diff] [blame] | 143 | '../util/data_file.cpp', |
Zane Shelley | 08c21c2 | 2022-01-26 16:58:18 -0600 | [diff] [blame] | 144 | '../util/pdbg.cpp', |
| 145 | 'pdbg-sim-only.cpp', |
| 146 | ), |
| 147 | pdbg_test_dtb, |
| 148 | ] |
| 149 | |
| 150 | dep = [ libhei_dep, libpdbg_dep, gtest_dep ] |
| 151 | |
| 152 | var = [ pdbg_env ] |
| 153 | |
| 154 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 155 | cpp_args: test_arg, include_directories: incdir) |
| 156 | |
| 157 | test(tc, exe, env: var) |
| 158 | |
| 159 | ################################################################################ |
| 160 | |
| 161 | tc = 'test-resolution' |
| 162 | |
| 163 | src = [ |
| 164 | files( |
| 165 | tc + '.cpp', |
| 166 | '../analyzer/resolution.cpp', |
| 167 | '../analyzer/service_data.cpp', |
| 168 | '../util/pdbg.cpp', |
| 169 | ), |
| 170 | pdbg_test_dtb, |
| 171 | ] |
| 172 | |
| 173 | dep = [ libhei_dep, libpdbg_dep, gtest_dep ] |
| 174 | |
| 175 | var = [ pdbg_env ] |
| 176 | |
| 177 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 178 | cpp_args: test_arg, include_directories: incdir) |
| 179 | |
| 180 | test(tc, exe, env: var) |
Zane Shelley | d195b71 | 2022-01-26 13:26:34 -0600 | [diff] [blame] | 181 | |
| 182 | ################################################################################ |
| 183 | |
| 184 | tc = 'test-tod-step-check-fault' |
| 185 | |
| 186 | src = [ |
| 187 | files( |
| 188 | tc + '.cpp', |
| 189 | '../analyzer/plugins/p10-tod-plugins.cpp', |
| 190 | '../analyzer/service_data.cpp', |
| 191 | '../util/pdbg.cpp', |
| 192 | ), |
| 193 | pdbg_test_dtb, |
| 194 | ] |
| 195 | |
| 196 | dep = [ libhei_dep, libpdbg_dep, gtest_dep ] |
| 197 | |
| 198 | var = [ pdbg_env ] |
| 199 | |
| 200 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 201 | cpp_args: test_arg, include_directories: incdir) |
| 202 | |
| 203 | test(tc, exe, env: var) |
| 204 | |
austinfcui | 444fa1c | 2022-02-08 10:20:37 -0600 | [diff] [blame] | 205 | ################################################################################ |
| 206 | |
| 207 | tc = 'test-ti-handler' |
| 208 | |
| 209 | src = [ |
| 210 | files( |
| 211 | tc + '.cpp', |
| 212 | ), |
| 213 | ] |
| 214 | |
| 215 | dep = [ gtest_dep ] |
| 216 | |
| 217 | var = [ ] |
| 218 | |
| 219 | exe = executable(tc.underscorify(), src, dependencies: dep, |
| 220 | link_with : hwdiags_libs, |
| 221 | cpp_args: test_arg, include_directories: incdir) |
| 222 | |
| 223 | test(tc, exe, env: var) |