From c6d22874d6dffc9646279601ad546c1d78d9a409 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Sun, 12 Jul 2026 20:30:21 +0200 Subject: [PATCH] f2: increase timeouts and max worker count without maxprocesses we can utilize core-rich systems better, and test timeouts are reportedly to be too low to run on small systems as well. fixes #890 Change-Id: I89386b89fcd69ef4bf77ecf0a49c0b85e1f17c3d --- tests/functional2/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/functional2/meson.build b/tests/functional2/meson.build index cf5519976..38d925df8 100644 --- a/tests/functional2/meson.build +++ b/tests/functional2/meson.build @@ -1,6 +1,6 @@ xdist_opts = [ - # auto number of workers, max 12 jobs - '-n', 'auto', '--maxprocesses=12', + # auto number of workers, auto number of jobs + '-n', 'auto', # Distributes tests evenly at first and then, if workers run out of tests, they steal from a different worker # This is useful here, due to differing durations of tests, especially when tests check timeout functionality # @@ -40,5 +40,5 @@ test( depends : nix, protocol : 'tap', suite : 'installcheck', - timeout : 300, + timeout : 1800, )