From ae06f5039ac4d19bdba815e6e75ffce4a8aadc97 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 23 Apr 2024 13:31:15 -0400 Subject: [PATCH] Do not run tests in parallel There are some dependencies between tests that are not explicit. For the moment do not run tests in parallel to avoid spurious failures. Signed-off-by: Simo Sorce --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 65c93578..54c49626 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -148,7 +148,7 @@ foreach t, extra_args : tests suite: suite, env: test_env, depends: test_executables, - is_parallel: is_parallel, + is_parallel: false, ) endforeach endforeach