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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
# Resources contain PNG and BMP files, so we need these two loaders
# enabled in order to build them
# FIXME: On Windows glib-compile-resources will fail to execute
# gdk-pixbuf-pixdata from build directory because it needs all DLL locations in
# $PATH. Ideally we should use gnome.compile_resources() and let Meson deal with
# this problem: See https://github.com/mesonbuild/meson/issues/8266.
if enabled_loaders.contains('png') and host_system != 'windows'
# Resources; we cannot use gnome.compile_resources() here, because we need to
# override the environment in order to use the utilities we just built instead
# of the system ones
resources_c = custom_target('resources.c',
input: 'resources.gresource.xml',
output: 'resources.c',
command: [
gen_resources,
'--glib-compile-resources', glib_compile_resources,
'--pixdata', gdk_pixbuf_pixdata,
'--loaders', loaders_cache,
'--sourcedir', meson.current_source_dir(),
'--source',
'@INPUT@',
'@OUTPUT@',
],
)
resources_h = custom_target('resources.h',
input: 'resources.gresource.xml',
output: 'resources.h',
command: [
gen_resources,
'--glib-compile-resources', glib_compile_resources,
'--pixdata', gdk_pixbuf_pixdata,
'--loaders', loaders_cache,
'--sourcedir', meson.current_source_dir(),
'--header',
'@INPUT@',
'@OUTPUT@',
],
)
no_resources = false
else
resources_c = []
resources_h = []
no_resources = true
endif
# {
# 'test name': {
# 'suites': [ test suites ], (optional)
# 'needs_resources': bool, (optional)
# 'skip': bool, (optional)
# }
# }
#
# test suites:
# - conform: Behavior conformance test
# - security: CVEs and the like
# - slow: Needs special timeout value
# - format: Per-format test
# - io: Loading/saving
# - ops: Pixel operations
installed_tests = {
'pixbuf-construction': { 'suites': ['conform'], },
'animation': {
'suites': ['format'],
'skip': not (enabled_loaders.contains('ani') and enabled_loaders.contains('gif')),
},
'cve-2015-4491': {
'suites': ['security'],
'needs_resources': true,
'skip': no_resources or not enabled_loaders.contains('bmp'),
},
'pixbuf-fail': { 'suites': ['conform', 'slow'], },
'pixbuf-icon-serialize': { 'suites': ['conform'], },
'pixbuf-randomly-modified': { 'suites': ['slow', 'flaky'], },
'pixbuf-threads': { 'suites': ['io'], },
'pixbuf-gif': {
'suites': ['io'],
},
'pixbuf-icc': {
'suites': ['io'],
},
'pixbuf-jpeg': {
'suites': ['format'],
'skip': not enabled_loaders.contains('jpeg'),
},
'pixbuf-dpi': {
'suites': ['io'],
},
'pixbuf-pixdata': {
'suites': ['format'],
'needs_resources': true,
'skip': no_resources,
},
'pixbuf-stream': { 'suites': ['io'], },
'pixbuf-reftest': {
'suites': ['conform'],
},
'pixbuf-resource': {
'suites': ['io'],
'needs_resources': true,
'skip': no_resources,
},
'pixbuf-scale': { 'suites': ['ops'], },
'pixbuf-scale-two-step': { 'suites': ['ops'], },
'pixbuf-short-gif-write': {
'suites': ['format'],
'skip': not enabled_loaders.contains('gif'),
},
'pixbuf-gif-circular-table': {
'suites': ['format'],
'skip': not enabled_loaders.contains('gif'),
},
'pixbuf-save': { 'suites': ['io'] },
'pixbuf-readonly-to-mutable': { 'suites': ['conform'], },
'pixbuf-composite': {
'suites': ['ops'],
'skip': not enabled_loaders.contains('png'),
},
'pixbuf-area-updated': {
'suites': ['slow'],
'skip': not (enabled_loaders.contains('ico') and enabled_loaders.contains('gif')),
},
}
test_data = [
'test-image.png',
'test-animation.gif',
'1_partyanimsm2.gif',
'test-animation.ani',
'icc-profile.jpeg',
'icc-profile.png',
'dpi.jpeg',
'dpi.png',
'dpi.tiff',
'premature-end.png',
'premature-end.jpg',
'bug143608-comment.jpg',
'bug725582-testrotate.jpg',
'bug725582-testrotate.png',
'cve-2015-4491.bmp',
'large.png',
'large.jpg',
'bug775218.jpg',
'test-image.pixdata',
'test-image-rle.pixdata',
'bug775693.pixdata',
'bug775229.pixdata',
'aero.gif',
'circular-table.gif',
'issue70.jpg',
'issue205.jpg',
]
installed_test_bindir = join_paths(gdk_pixbuf_libexecdir, 'installed-tests', meson.project_name())
installed_test_datadir = join_paths(gdk_pixbuf_datadir, 'installed-tests', meson.project_name())
if get_option('installed_tests')
install_data(test_data, install_dir: installed_test_bindir)
install_subdir('test-images', install_dir: installed_test_bindir)
endif
test_deps = gdk_pixbuf_deps + [ gdkpixbuf_dep, ]
test_args = [ '-k' ]
test_env = environment()
test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
test_env.set('GDK_PIXBUF_MODULE_FILE', loaders_cache.full_path())
foreach test_name, test_data: installed_tests
test_sources = [ test_name + '.c', 'test-common.c' ]
test_suites = test_data.get('suites', [])
needs_resources = test_data.get('needs_resources', false)
if needs_resources
test_sources += [ resources_c, resources_h ]
endif
skip_if_true = test_data.get('skip', false)
if skip_if_true
continue
endif
custom_target(test_name + '.test',
output: test_name + '.test',
command: [
gen_installed_test,
'--testbindir', installed_test_bindir,
'--testbin', test_name,
'@OUTPUT@',
],
install: get_option('installed_tests'),
install_dir: installed_test_datadir,
)
test_bin = executable(test_name, test_sources,
dependencies: test_deps,
include_directories: [ root_inc, gdk_pixbuf_inc, ],
c_args: common_cflags,
install: get_option('installed_tests'),
install_dir: installed_test_bindir,
)
# Two particularly slow tests
if test_suites.contains('slow')
timeout = 300
else
timeout = 30
endif
test(test_name, test_bin,
suite: test_suites,
args: test_args,
env: test_env,
timeout: timeout,
)
endforeach
executable('pixbuf-read',
'pixbuf-read.c',
dependencies: test_deps,
include_directories: [
root_inc,
include_directories('../gdk-pixbuf')
],
c_args: common_cflags,
)
|