Spracherkennung für: .build vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
test_renderer = executable('test-svg-animation',
sources: ['test-svg-animation.c'],
c_args: common_cflags+ ['-DGTK_COMPILATION'],
link_with: testutils_lib,
dependencies: libgtk_static_dep,
)
test_data = [
'additive.test',
'animate-motion.test',
'button.test',
'clips.test',
'cloned-animation.test',
'colors.test',
'colors-linear.test',
'dashes.test',
'discrete.test',
'filter-animation.test',
'focus.test',
'focus-backwards.test',
'fractional-repeat.test',
'gpa-animations.test',
'gpa-attachment.test',
'gpa-attachment2.test',
'gpa-attachment3.test',
'gpa-states.test',
'gpa-transitions.test',
'gpa-transitions2.test',
'gpa-transitions3.test',
'gradient-animation.test',
'hover.test',
'masks.test',
'negative-delay.test',
'paths.test',
'paths2.test',
'priority.test',
'priority2.test',
'states.test',
'symbolics.test',
'transform-animation.test',
'use.test',
'use-dashes.test',
]
foreach testname : test_data
test('svg animation ' + testname, test_renderer,
args: [ '--tap',
'-k',
'--output', meson.current_build_dir(),
join_paths(meson.current_source_dir(), testname),
],
protocol: 'tap',
env: [
'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()),
'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir())
],
suite: [ 'svg', 'svg animation' ]
)
endforeach