diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-10-23 00:20:56 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-10-23 20:05:12 +0200 |
| commit | 0513cdd9511423ea97b12378035bb562316a7626 (patch) | |
| tree | fbbe27e3e2b0e7ec34aaa7c37f246bc5db6fbcf2 /meson.build | |
| parent | bb8ef2203469e949700499499e101354dfb1fe1f (diff) | |
uri & u8: Improve unit test coverage
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meson.build b/meson.build index fd24f0a..d3280a8 100644 --- a/meson.build +++ b/meson.build @@ -463,6 +463,19 @@ test('uri', executable( ], )) +test('u8', executable( + 'test_u8', + sources: [ + 'src/u.hh', + 'src/u8.hh', + 'test/u8.cc', + ], + include_directories: inc, + dependencies : [ + test_dependencies, + ], +)) + run_clang_tidy = find_program('run-clang-tidy', required: false) if run_clang_tidy.found() |
