[go: up one dir, main page]

File: meson.build

package info (click to toggle)
raqm 0.10.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,060 kB
  • sloc: ansic: 2,151; python: 61; xml: 57; sh: 26; makefile: 6
file content (78 lines) | stat: -rw-r--r-- 1,997 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
python3 = import('python').find_installation()

raqm_test = executable(
    'raqm-test',
    'raqm-test.c',
    include_directories: include_directories(['../src']),
    link_with: libraqm_test,
    dependencies: deps,
    install: false,
)

tests = [
    'buffer-flags-1.test',
    'cursor-position-1.test',
    'cursor-position-2.test',
    'cursor-position-3.test',
    'cursor-position-4.test',
    #'cursor-position-GB3.test',
    'cursor-position-GB4.test',
    'cursor-position-GB5.test',
    'cursor-position-GB8a.test',
    'cursor-position-GB9.test',
    'cursor-position-GB9a.test',
    'direction-ltr-1.test',
    'direction-ltr-2.test',
    'direction-ltr-3.test',
    'direction-ltr-4.test',
    'direction-ltr-5.test',
    'direction-neutral-1.test',
    'direction-rtl-1.test',
    'direction-rtl-2.test',
    'direction-rtl-3.test',
    'direction-rtl-4.test',
    'direction-rtl-5.test',
    'direction-ttb-1.test',
    'direction-ttb-2.test',
    'empty-text.test',
    'features-arabic.test',
    'features-kerning.test',
    'features-ligature.test',
    'invisible-glyph-explicit.test',
    'invisible-glyph-hidden.test',
    'invisible-glyph-space.test',
    'languages-sr-ru.test',
    'languages-sr.test',
    'letter-and-wordspacing.test',
    'multi-fonts-1.test',
    'multi-fonts-2.test',
    'scripts-backward-ltr.test',
    'scripts-backward-rtl.test',
    'scripts-backward.test',
    'scripts-common.test',
    'scripts-combinig-marks.test',
    'scripts-forward-ltr.test',
    'scripts-forward-rtl.test',
    'scripts-forward.test',
    'test-1.test',
    'test-2.test',
    'test-3.test',
    'test-4.test',
    'test-5.test',
    'xyoffset.test',
]

foreach filename : tests
    testname = filename.split('.')[0]

    test(
        testname,
        python3,
        args: [
            files('runtest.py'),
            meson.current_source_dir(),
            raqm_test,
            join_paths(meson.current_source_dir(), filename),
        ],
    )
endforeach