summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 527998ffa46fb350457757c815354e0732945b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
test_issue_1063 = executable('issue-1063',
  files([ 'issue-1063/main.c' ]),
  dependencies: freetype_dep,
)

test_env = ['FREETYPE_TESTS_DATA_DIR='
            + join_paths(meson.current_source_dir(), 'data')]

test('issue-1063',
  test_issue_1063,
  env: test_env,
  suite: 'regression')

# EOF