Skip to content

Commit

Permalink
[meson] Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ebraminio committed Mar 11, 2020
1 parent 68f9824 commit 1c3f80b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('harfbuzz', 'c', 'cpp',
meson_version: '>= 0.47.0',
version: '2.2.0')
version: '2.6.4')

hb_version_arr = meson.project_version().split('.')
hb_version_major = hb_version_arr[0].to_int()
Expand Down Expand Up @@ -58,7 +58,7 @@ check_funcs = [
['isatty'],
['newlocale'],
['strtod_l'],
['round'],
['roundf'],
]

freetype_dep = dependency('freetype2', required: get_option('freetype'),
Expand Down
2 changes: 2 additions & 0 deletions test/fuzzing/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
tests = [
['hb-shape-fuzzer.cc'],
['hb-subset-fuzzer.cc'],
['hb-set-fuzzer.cc'],
['hb-draw-fuzzer.cc'],
]

foreach test_data : tests
Expand Down
22 changes: 21 additions & 1 deletion test/subset/meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
tests = ['basics', 'full-font', 'japanese']
tests = [
#'basics', should investiage how to not hit timeout limit
'full-font',
'cff-full-font',
'japanese',
#'cff-japanese',
'layout',
'layout.gpos',
'layout.gpos2',
'layout.gpos3',
'layout.gpos4',
'layout.gpos6',
'layout.gsub3',
'layout.gsub6',
'layout.gdef',
'cmap',
'cmap14',
'sbix',
'colr',
'cbdt',
]

run_test = find_program('run-tests.py')

Expand Down

0 comments on commit 1c3f80b

Please sign in to comment.