diff --git a/meson.build b/meson.build index 124cef1..b263e7b 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'sov', 'c', - version: '0.9', + version: '0.5', license: 'ISC', default_options: ['c_std=c99'] ) @@ -105,9 +105,9 @@ executable( install_data('config', install_dir : get_option('datadir') / 'sov') -test('tree_test', executable( - 'test-tree', +executable( + 'test_tree', tst_sources, include_directories: [sov_inc], dependencies: sov_dependencies, -)) \ No newline at end of file +) \ No newline at end of file diff --git a/tst/runtests.sh b/tst/runtests.sh index d0e233d..6296419 100755 --- a/tst/runtests.sh +++ b/tst/runtests.sh @@ -1,7 +1,7 @@ -build/test-tree -c tst/config_a -w tst/workspace_a.json -t tst/tree_a.json -o tst/image_1.bmp -build/test-tree -c tst/config_b -w tst/workspace_a.json -t tst/tree_a.json -o tst/image_2.bmp -build/test-tree -c tst/config_a -w tst/workspace_b.json -t tst/tree_b.json -o tst/image_3.bmp -build/test-tree -c tst/config_b -w tst/workspace_b.json -t tst/tree_b.json -o tst/image_4.bmp +build/test_tree -c tst/config_a -w tst/workspace_a.json -t tst/tree_a.json -o tst/image_1.bmp +build/test_tree -c tst/config_b -w tst/workspace_a.json -t tst/tree_a.json -o tst/image_2.bmp +build/test_tree -c tst/config_a -w tst/workspace_b.json -t tst/tree_b.json -o tst/image_3.bmp +build/test_tree -c tst/config_b -w tst/workspace_b.json -t tst/tree_b.json -o tst/image_4.bmp diff tst/image_1.bmp tst/original_1.bmp diff tst/image_2.bmp tst/original_2.bmp diff tst/image_3.bmp tst/original_3.bmp