testexecdir = join_paths(installed_test_bindir, 'gsk') testdatadir = join_paths(installed_test_datadir, 'gsk') compare_render = executable( 'compare-render', ['compare-render.c', 'reftest-compare.c'], dependencies: libgtk_dep, c_args: common_cflags, install: get_option('install-tests'), install_dir: testexecdir ) node_parser = executable( 'node-parser', ['node-parser.c'], dependencies: libgtk_dep, c_args: common_cflags, install: get_option('install-tests'), install_dir: testexecdir ) compare_render_tests = [ 'blend-normal', 'blend-difference', 'clip-coordinates-2d', 'clip-coordinates-3d', 'clipped_rounded_clip', 'color-blur0', 'color-matrix-identity', 'cross-fade-in-opacity', 'empty-blend', 'empty-blur', 'empty-border', 'empty-cairo', 'empty-clip', 'empty-color', 'empty-color-matrix', 'empty-container', 'empty-cross-fade', 'empty-debug', 'empty-inset-shadow', # this test fails for some of the backends # 'empty-linear-gradient', 'empty-opacity', 'empty-outset-shadow', 'empty-repeat', 'empty-rounded-clip', 'empty-shadow', 'empty-texture', 'empty-transform', 'opacity_clip', 'outset_shadow_offset_both', 'outset_shadow_offset_x', 'outset_shadow_offset_y', 'outset_shadow_rounded_top', 'outset_shadow_simple', 'scaled-cairo', 'shadow-in-opacity', 'texture-url', 'color-matrix-identity', 'clip-nested1', 'scale-up-down', 'opacity-overlapping-children', 'repeat', 'repeat-texture', 'repeat-no-repeat', 'repeat-negative-coords', 'inset-shadow-multiple', 'borders-rotated', 'blend-invisible-child', 'transform-in-transform', 'transform-in-transform-in-transform', 'nested-rounded-clips', 'clip-in-rounded-clip1', 'clip-in-rounded-clip2', 'clip-in-rounded-clip3', ] # these are too sensitive to differences in the renderers # to run in ci, but still useful to keep around informative_render_tests = [ 'big-glyph', 'empty-text', 'huge-glyph', ] renderers = [ # name exclude term [ 'opengl', '' ], [ 'broadway', '-3d' ], [ 'cairo', '-3d' ], ] foreach renderer : renderers foreach test : compare_render_tests if ((renderer[1] == '' or not test.contains(renderer[1])) and (renderer[0] != 'broadway' or broadway_enabled)) test(renderer[0] + ' ' + test, compare_render, args: ['--output', join_paths(meson.current_build_dir(), 'compare', renderer[0]), join_paths(meson.current_source_dir(), 'compare', test + '.node'), join_paths(meson.current_source_dir(), 'compare', test + '.png')], env: [ 'GSK_RENDERER=' + renderer[0], 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()), 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()) ], suite: [ 'gsk', 'gsk-compare', 'gsk-' + renderer[0], 'gsk-compare-' + renderer[0] ]) endif endforeach endforeach node_parser_tests = [ 'blend.node', 'border.node', 'color.node', 'crash1.errors', 'crash1.node', 'crash1.ref.node', 'crash2.errors', 'crash2.node', 'crash2.ref.node', 'crash3.node', 'crash3.ref.node', 'crash4.errors', 'crash4.node', 'crash4.ref.node', 'debug.node', 'empty-blend.node', 'empty-blend.ref.node', 'empty-blur.node', 'empty-blur.ref.node', 'empty-border.node', 'empty-border.ref.node', 'empty-cairo.node', 'empty-cairo.ref.node', 'empty-clip.node', 'empty-clip.ref.node', 'empty-color.node', 'empty-color.ref.node', 'empty-color-matrix.node', 'empty-color-matrix.ref.node', 'empty-container.node', 'empty-container.ref.node', 'empty-cross-fade.node', 'empty-cross-fade.ref.node', 'empty-debug.node', 'empty-debug.ref.node', 'empty-inset-shadow.node', 'empty-inset-shadow.ref.node', 'empty-linear-gradient.node', 'empty-linear-gradient.ref.node', 'empty-opacity.node', 'empty-opacity.ref.node', 'empty-outset-shadow.node', 'empty-outset-shadow.ref.node', 'empty-repeat.node', 'empty-repeat.ref.node', 'empty-rounded-clip.node', 'empty-rounded-clip.ref.node', 'empty-shadow.node', 'empty-shadow.ref.node', 'empty-text.node', 'empty-text.ref.node', 'empty-texture.node', 'empty-texture.ref.node', 'empty-transform.node', 'empty-transform.ref.node', 'rounded-rect.node', 'shadow.node', 'testswitch.node', 'widgetfactory.node', ] foreach test : node_parser_tests if test.endswith('.node') and not test.endswith('.ref.node') test('parser ' + test, node_parser, args: [ join_paths(meson.current_source_dir(), 'nodeparser', test) ], env: [ 'GSK_RENDERER=opengl', 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()), 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()) ], suite: 'gsk') endif endforeach tests = [ ['rounded-rect'], ['transform'], ] test_cargs = [] foreach t : tests test_name = t.get(0) test_srcs = ['@0@.c'.format(test_name)] + t.get(1, []) test_extra_cargs = t.get(2, []) test_extra_ldflags = t.get(3, []) test_exe = executable(test_name, test_srcs, c_args : test_cargs + test_extra_cargs + common_cflags, link_args : test_extra_ldflags, dependencies : libgtk_dep, install: get_option('install-tests'), install_dir: testexecdir) test(test_name, test_exe, args: [ '--tap', '-k' ], protocol: 'tap', env: [ 'GSK_RENDERER=cairo', 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()), 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()) ], suite: 'gsk') endforeach