diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-06-03 00:51:09 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-06-03 02:09:04 +0000 |
commit | 3788e1dea74286948fa8fd92c18a9dc46d736978 (patch) | |
tree | cd15478bb8f3aaae0235aad5f601b444fedd8e41 /testsuite | |
parent | e0bf301d341196fb80dd0f0f5ef804fc7c95056c (diff) | |
download | gtk+-3788e1dea74286948fa8fd92c18a9dc46d736978.tar.gz |
testsuite: Pass --output for gsk tests
We want to keep the output from ci runs.
So we now write the .out.png and .diff.png
files to build/testsuite/gsk/compare/$RENDERER.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/gsk/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/gsk/meson.build b/testsuite/gsk/meson.build index a3563f11b4..fd3118af49 100644 --- a/testsuite/gsk/meson.build +++ b/testsuite/gsk/meson.build @@ -71,7 +71,8 @@ foreach renderer : renderers foreach test : compare_render_tests if (renderer[1] == '' or not test.contains(renderer[1])) test(renderer[0] + ' ' + test, compare_render, - args: [join_paths(meson.current_source_dir(), 'compare', test + '.node'), + 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: [ 'GIO_USE_VOLUME_MONITOR=unix', 'GSETTINGS_BACKEND=memory', |