aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build9
1 files changed, 8 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index fbb1906..af2e1b3 100644
--- a/meson.build
+++ b/meson.build
@@ -31,5 +31,12 @@ endif
if get_option('tests')
subdir('test')
test_e = executable('test executable', test_sources, include_directories : inc, link_with : librin)
- test('librin test', test_e)
+ test('float sign', test_e, args : ['float', 'signbitf'])
+ test('double sign', test_e, args : ['float', 'signbitd'])
+ 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('gpio', test_e, args : ['gpio', 'none'])
endif