diff options
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 8 |
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']) |