diff --git a/src/util/meson.build b/src/util/meson.build index b99d75bcfd8..cd44e49bfb4 100644 --- a/src/util/meson.build +++ b/src/util/meson.build @@ -343,7 +343,6 @@ if with_tests 'tests/register_allocate_test.cpp', 'tests/roundeven_test.cpp', 'tests/set_test.cpp', - 'tests/sparse_array_test.cpp', 'tests/timespec_test.cpp', 'tests/u_atomic_test.cpp', 'tests/u_debug_stack_test.cpp', @@ -366,6 +365,13 @@ if with_tests ) endif + # FIXME: this test cause a big timeout on MacOS + if host_machine.system() != 'darwin' + files_util_tests += files( + 'tests/sparse_array_test.cpp', + ) + endif + if with_shader_cache files_util_tests += files( 'tests/cache_test.cpp',