mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 13:05:04 +00:00
fix meson compiled_tests
This commit is contained in:
parent
d550e16acc
commit
c2f42fbb14
2 changed files with 15 additions and 15 deletions
|
@ -685,29 +685,15 @@ if get_option('tests').enabled()
|
|||
if cpp.get_define('_MSC_FULL_VER') == ''
|
||||
noinst_programs = {
|
||||
'main': 'main.cc',
|
||||
'test-algs': ['test-algs.cc', 'hb-static.cc'],
|
||||
'test-basics': 'test.cc',
|
||||
'test-bimap': ['test-bimap.cc', 'hb-static.cc'],
|
||||
'test-buffer-serialize': 'test-buffer-serialize.cc',
|
||||
'test-classdef-graph': ['graph/test-classdef-graph.cc', 'hb-static.cc', 'graph/gsubgpos-context.cc'],
|
||||
'test-instancer-solver': ['test-subset-instancer-solver.cc', 'hb-subset-instancer-solver.cc', 'hb-static.cc'],
|
||||
'test-iter': ['test-iter.cc', 'hb-static.cc'],
|
||||
'test-map': ['test-map.cc', 'hb-static.cc'],
|
||||
'test-multimap': ['test-multimap.cc', 'hb-static.cc'],
|
||||
'test-ot-meta': 'test-ot-meta.cc',
|
||||
'test-ot-name': 'test-ot-name.cc',
|
||||
'test-ot-glyphname': 'test-ot-glyphname.cc',
|
||||
'test-ot-gpos-size-params': 'test-gpos-size-params.cc',
|
||||
'test-ot-gsub-get-alternates': 'test-gsub-get-alternates.cc',
|
||||
'test-ot-gsub-would-substitute': 'test-gsub-would-substitute.cc',
|
||||
'test-priority-queue': ['test-priority-queue.cc', 'hb-static.cc'],
|
||||
'test-repacker': ['test-repacker.cc', 'hb-static.cc', 'graph/gsubgpos-context.cc'],
|
||||
'test-serialize': ['test-serialize.cc', 'hb-static.cc'],
|
||||
'test-set': ['test-set.cc', 'hb-static.cc'],
|
||||
'test-tuple-varstore': ['test-tuple-varstore.cc', 'hb-subset-instancer-solver.cc', 'hb-static.cc'],
|
||||
'test-item-varstore': ['test-item-varstore.cc', 'hb-subset-instancer-solver.cc', 'hb-static.cc'],
|
||||
'test-use-table': 'test-use-table.cc',
|
||||
'test-vector': ['test-vector.cc', 'hb-static.cc'],
|
||||
}
|
||||
foreach name, source : noinst_programs
|
||||
executable(name, source,
|
||||
|
@ -720,10 +706,24 @@ if get_option('tests').enabled()
|
|||
endif
|
||||
|
||||
compiled_tests = {
|
||||
'test-algs': ['test-algs.cc', 'hb-static.cc'],
|
||||
'test-array': ['test-array.cc'],
|
||||
'test-bimap': ['test-bimap.cc', 'hb-static.cc'],
|
||||
'test-classdef-graph': ['graph/test-classdef-graph.cc', 'hb-static.cc', 'graph/gsubgpos-context.cc'],
|
||||
'test-iter': ['test-iter.cc', 'hb-static.cc'],
|
||||
'test-machinery': ['test-machinery.cc', 'hb-static.cc'],
|
||||
'test-map': ['test-map.cc', 'hb-static.cc'],
|
||||
'test-multimap': ['test-multimap.cc', 'hb-static.cc'],
|
||||
'test-number': ['test-number.cc', 'hb-number.cc'],
|
||||
'test-ot-tag': ['hb-ot-tag.cc'],
|
||||
'test-set': ['test-set.cc', 'hb-static.cc'],
|
||||
'test-serialize': ['test-serialize.cc', 'hb-static.cc'],
|
||||
'test-vector': ['test-vector.cc', 'hb-static.cc'],
|
||||
'test-repacker': ['test-repacker.cc', 'hb-static.cc', 'graph/gsubgpos-context.cc'],
|
||||
'test-instancer-solver': ['test-subset-instancer-solver.cc', 'hb-subset-instancer-solver.cc', 'hb-static.cc'],
|
||||
'test-priority-queue': ['test-priority-queue.cc', 'hb-static.cc'],
|
||||
'test-tuple-varstore': ['test-tuple-varstore.cc', 'hb-subset-instancer-solver.cc', 'hb-static.cc'],
|
||||
'test-item-varstore': ['test-item-varstore.cc', 'hb-subset-instancer-solver.cc', 'hb-static.cc'],
|
||||
'test-unicode-ranges': ['test-unicode-ranges.cc'],
|
||||
}
|
||||
foreach name, source : compiled_tests
|
||||
|
|
|
@ -419,7 +419,7 @@ main (int argc, char **argv)
|
|||
result_t out = rebase_tent (tent, axis_range, axis_distances);
|
||||
assert (out.length == 1);
|
||||
assert (out[0].first == 1.f);
|
||||
assert (out[0].second == Triple (0.5f, 0.625f, 0.75f));
|
||||
assert (approx (out[0].second, Triple (0.5f, 0.625f, 0.75f)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue