Going over random RESTRICT=test and noticed this. libinsane-1.0.10 has: # Tests require an operational valgrind # https://wiki.gentoo.org/wiki/Debugging RESTRICT="test" Looking at https://gitlab.gnome.org/World/OpenPaperwork/libinsane/-/blob/master/subprojects/libinsane/tests/meson.build, it should be possible to workaround this by doing something like we do in app-arch/zstd: ``` local native_file="${T}"/meson.${CHOST}.${ABI}.ini.local cat >> ${native_file} <<-EOF || die [binaries] valgrind='valgrind-falseified' EOF local emesonargs=( --native-file "${native_file}" ) meson_src_configure ``` (You can drop the ${ABI} bit for non-multilib ofc.)