From 9aa751f59ec2d8d29719ae6918b92c98f1086bf9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc-Andr=C3=A9=20Lureau?= Date: Fri, 8 Jul 2022 16:02:41 +0400 Subject: [PATCH] meson: add test-autolaunch-win MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- test/data/meson.build | 1 + test/name-test/meson.build | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/test/data/meson.build b/test/data/meson.build index 692cf5701..602fac7ff 100644 --- a/test/data/meson.build +++ b/test/data/meson.build @@ -122,6 +122,7 @@ data_in_to_install = [ 'valid-config-files/forbidding.conf', 'valid-config-files/incoming-limit.conf', 'valid-config-files/limit-containers.conf', + 'valid-config-files/listen-autolaunch-win.conf', 'valid-config-files/max-completed-connections.conf', 'valid-config-files/max-connections-per-user.conf', 'valid-config-files/max-containers.conf', diff --git a/test/name-test/meson.build b/test/name-test/meson.build index 1d1893f4f..8e26e1b7d 100644 --- a/test/name-test/meson.build +++ b/test/name-test/meson.build @@ -23,12 +23,17 @@ if embedded_tests tests = [ - 'test-autolaunch', 'test-ids', 'test-pending-call-disconnected', 'test-shutdown', ] + if platform_windows + tests += ['test-autolaunch-win'] + else + tests += ['test-autolaunch'] + endif + if use_traditional_activation tests += [ 'test-pending-call-dispatch', -- 2.47.3