From 4a7348e48c05962c7ca5a92f055622263a40242c Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 20 Jun 2023 09:15:02 +0200 Subject: [PATCH] egl: add missing ABI check test We were building the executable for the test, but not declaring the test. Signed-off-by: Simon Ser --- egl/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/egl/meson.build b/egl/meson.build index b3cbdf3..c512377 100644 --- a/egl/meson.build +++ b/egl/meson.build @@ -9,7 +9,8 @@ wayland_egl = library( install: true ) -executable('wayland-egl-abi-check', 'wayland-egl-abi-check.c') +wayland_egl_abi_check = executable('wayland-egl-abi-check', 'wayland-egl-abi-check.c') +test('wayland-egl abi check', wayland_egl_abi_check) nm_path = find_program('nm').full_path()