aboutsummaryrefslogtreecommitdiffstats
path: root/egl
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-06-20 09:15:02 +0200
committerSimon Ser <contact@emersion.fr>2023-06-20 09:20:49 +0200
commit4a7348e48c05962c7ca5a92f055622263a40242c (patch)
treec9ab2a59054ba2244174f9b3f1d9938c73bfb102 /egl
parenttests: add missing proxy-test (diff)
downloadwayland-4a7348e48c05962c7ca5a92f055622263a40242c.tar
wayland-4a7348e48c05962c7ca5a92f055622263a40242c.tar.gz
wayland-4a7348e48c05962c7ca5a92f055622263a40242c.tar.bz2
wayland-4a7348e48c05962c7ca5a92f055622263a40242c.tar.lz
wayland-4a7348e48c05962c7ca5a92f055622263a40242c.tar.xz
wayland-4a7348e48c05962c7ca5a92f055622263a40242c.tar.zst
wayland-4a7348e48c05962c7ca5a92f055622263a40242c.zip
egl: add missing ABI check test
We were building the executable for the test, but not declaring the test. Signed-off-by: Simon Ser <contact@emersion.fr>
Diffstat (limited to 'egl')
-rw-r--r--egl/meson.build3
1 files changed, 2 insertions, 1 deletions
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()