From c7198103b9816ef761ddbdf5d23f94e52afdc730 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Wed, 8 Nov 2017 14:46:54 +0200 Subject: tests: split test and let meson handle them. --- meson.build | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'meson.build') 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 -- cgit v1.2.3