From ed1815c3d951630c472f093ed8dfdcb03e597134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Mon, 19 Feb 2024 20:28:01 +0100 Subject: [PATCH] build: Allow testing more drivers in both big and little endian I've tested them in a s390x host and many more tests work fine, so let's enable them. --- meson.build | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/meson.build b/meson.build index b57d3c51..64779e9c 100644 --- a/meson.build +++ b/meson.build @@ -142,8 +142,26 @@ default_drivers = [ # FIXME: All the drivers should be fixed by adjusting the byte order. # See https://gitlab.freedesktop.org/libfprint/libfprint/-/issues/236 endian_independent_drivers = virtual_drivers + [ + 'aes1610', + 'aes1660', + 'aes2550', + 'aes2660', 'aes3500', + 'aes4000', + 'egis0570', + 'elanmoc', + 'etes603', + 'focaltech_moc', + 'nb1010', + 'realtek', 'synaptics', + 'upeksonly', + 'upektc', + 'upektc_img', + 'upekts', + 'vcom5s', + 'vfs101', + 'vfs7552', ] all_drivers = default_drivers + virtual_drivers