summaryrefslogtreecommitdiff
path: root/testsuite/gdk
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-09-28 22:48:16 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2019-11-15 12:52:03 +0100
commit3c2b5cda7402135e9366351b275e29e44324757a (patch)
tree1581d72d30060b36dd5d55865060e35cec92f146 /testsuite/gdk
parente5550439e259951f12a59c8920999e0b09e1f3fd (diff)
downloadgtk+-3c2b5cda7402135e9366351b275e29e44324757a.tar.gz
meson: port installed tests and reftests
I couldn't get all reftests to work reliably, so the tests failing on either CI or on my machine are skipped for now. Installed tests are disabled by default and can be enabled with "-Dinstalled_tests=true"
Diffstat (limited to 'testsuite/gdk')
-rw-r--r--testsuite/gdk/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/gdk/meson.build b/testsuite/gdk/meson.build
index ca84758e4f..9c8480d3c7 100644
--- a/testsuite/gdk/meson.build
+++ b/testsuite/gdk/meson.build
@@ -11,7 +11,9 @@ tests = [
foreach t : tests
test_exe = executable(t, '@0@.c'.format(t),
- dependencies: libgtk_dep)
+ dependencies: libgtk_dep,
+ install: get_option('installed_tests'),
+ install_dir: installed_test_bindir)
test(t, test_exe,
args: [ '--tap', '-k' ],