aboutsummaryrefslogtreecommitdiffstats
path: root/test/meson.build
diff options
context:
space:
mode:
authorGravatar Gediminas Jakutis <gediminas@varciai.lt> 2019-10-11 16:14:31 +0300
committerGravatar Gediminas Jakutis <gediminas@varciai.lt> 2019-10-11 16:14:31 +0300
commite52d4246e643cca7f6a3967f91beffdda79a45a0 (patch)
tree381174581ef8186a837b44a7fc92ea52078fc569 /test/meson.build
parentf3b53eb8636145c84502f0628309635fe17e2e54 (diff)
downloadlibrin-e52d4246e643cca7f6a3967f91beffdda79a45a0.tar.gz
librin-e52d4246e643cca7f6a3967f91beffdda79a45a0.tar.bz2
librin-e52d4246e643cca7f6a3967f91beffdda79a45a0.zip
test: partial diagnostic subsystem coverage.
Add the required bits for most diagnostic testic functions and create tests for rin_err; explicitly skip the rest, for now. Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'test/meson.build')
-rw-r--r--test/meson.build8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build
index 5e0a100..7864166 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -16,7 +16,13 @@ test('flaot to string', test_e, args : ['float', 'floattohexstring'])
test('double to string', test_e, args : ['float', 'doubletohexstring'])
test('compare floats', test_e, args : ['float', 'comparefloat'])
test('compare doubles', test_e, args : ['float', 'comparedouble'])
-test('diagnostic', test_e, args : ['diagnostic', 'none'])
+test('diagnostic err', test_e, args : ['diagnostic', 'err'])
+test('diagnostic warn', test_e, args : ['diagnostic', 'warn'])
+test('diagnostic fixme', test_e, args : ['diagnostic', 'fixme'])
+test('diagnostic info', test_e, args : ['diagnostic', 'info'])
+test('diagnostic prefix', test_e, args : ['diagnostic', 'prefix'])
+test('diagnostic thread', test_e, args : ['diagnostic', 'thread'])
+test('diagnostic clean', test_e, args : ['diagnostic', 'clean'])
test('timespec add', test_e, args : ['time', 'timespec add'])
test('timespec subtract', test_e, args : ['time', 'timespec sub'])
test('timespec normalize', test_e, args : ['time', 'timespec normalize'])