From 340692299ed834f962b83b1bc0eb6f49471ca556 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Tue, 18 Oct 2022 19:33:47 +0100 Subject: Add beginnings of test framework. Just contains a couple of very simple UTF-8 tests for now. --- test/meson.build | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/meson.build (limited to 'test/meson.build') diff --git a/test/meson.build b/test/meson.build new file mode 100644 index 0000000..49f6870 --- /dev/null +++ b/test/meson.build @@ -0,0 +1,15 @@ +tests = [ + 'utf8' +] + +foreach test_file : tests + t = executable( + test_file, + files(test_file + '.c', 'tap.c'), common_sources, wl_proto_src, wl_proto_headers, + include_directories: ['../src'], + dependencies: [librt, libm, freetype, harfbuzz, cairo, pangocairo, wayland_client, xkbcommon, glib, gio_unix], + install: false + ) + + test(test_file, t, protocol: 'tap') +endforeach -- cgit v1.2.3