summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-07-09 22:12:33 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-07-09 22:12:54 -0400
commitf86b5181bb5f3c4db52bdef70bc34a02834c4a08 (patch)
treef319e75b0b8936374d361e60ebd4803b4acfc24c
parenta73911e764ebb1a22ae6bb8a84f3ca3eb286b582 (diff)
downloadpango-f86b5181bb5f3c4db52bdef70bc34a02834c4a08.tar.gz
install itemize test data
-rw-r--r--tests/meson.build11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 73a85981..0cc01642 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -87,6 +87,10 @@ test_breaks_data = [
'breaks/three',
]
+test_items_data = [
+ 'itemize/one',
+]
+
installed_test_layouts_data = []
foreach d: test_layouts_data
installed_test_layouts_data += d + '.markup'
@@ -105,6 +109,12 @@ foreach d: test_breaks_data
installed_test_breaks_data += d + '.expected'
endforeach
+installed_test_items_data = []
+foreach d: test_items_data
+ installed_test_items_data += d + '.items'
+ installed_test_items_data += d + '.expected'
+endforeach
+
installed_test_datadir = join_paths(pango_datadir, 'installed-tests', 'pango')
installed_test_bindir = join_paths(pango_libexecdir, 'installed-tests', 'pango')
@@ -113,6 +123,7 @@ if get_option('install-tests')
install_data(installed_test_layouts_data, install_dir: join_paths(installed_test_bindir, 'layouts'))
install_data(installed_test_markups_data, install_dir: join_paths(installed_test_bindir, 'markups'))
install_data(installed_test_breaks_data, install_dir: join_paths(installed_test_bindir, 'breaks'))
+ install_data(installed_test_items_data, install_dir: join_paths(installed_test_bindir, 'itemize'))
endif
python = import('python3').find_python()