From: Pieter Lexis Date: Tue, 7 Jul 2026 07:43:16 +0000 (+0200) Subject: chore: Increase testrunner timeouts X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df266d3b259a614ea640468e1e148e0983bd8d86;p=thirdparty%2Fpdns.git chore: Increase testrunner timeouts Closes #17552 --- diff --git a/meson.build b/meson.build index a21f4e2186..1c28589ebb 100644 --- a/meson.build +++ b/meson.build @@ -1124,6 +1124,7 @@ if get_option('unit-tests') 'BOOST_TEST_LOG_LEVEL': 'message', }, is_parallel: false, + timeout: 300, ) endif @@ -1176,6 +1177,7 @@ if get_option('unit-tests-backends') workdir: product_source_dir / fs.parent(module_remotebackend_testrunner), is_parallel: false, depends: get_variable(exec_var_name), + timeout: 300, ) endforeach endif @@ -1199,6 +1201,7 @@ if get_option('unit-tests-backends') workdir: product_source_dir / 'regression-tests', depends: [pdns_server, pdnsutil, sdig, saxfr, pdns_notify, nsec3dig], is_parallel: false, + timeout: 300, ) endif endforeach diff --git a/pdns/dnsdistdist/meson.build b/pdns/dnsdistdist/meson.build index 775fdfcea0..b4a9e6a956 100644 --- a/pdns/dnsdistdist/meson.build +++ b/pdns/dnsdistdist/meson.build @@ -705,11 +705,11 @@ if get_option('fuzz-targets') endif if get_option('unit-tests') - test('testrunner', testrunner) + test('testrunner', testrunner, timeout: 300) endif if get_option('benchmark') - benchmark('benchmarkrunner', benchmarkrunner, timeout:240) + benchmark('benchmarkrunner', benchmarkrunner, timeout: 300) endif # Man-pages. diff --git a/pdns/recursordist/meson.build b/pdns/recursordist/meson.build index 76083e7bb8..37828abb02 100644 --- a/pdns/recursordist/meson.build +++ b/pdns/recursordist/meson.build @@ -610,7 +610,7 @@ endforeach if get_option('unit-tests') # default timeout of 30s is too short for some ubicloud targets. Unknown *why* they are so slow. - test('testrunner', testrunner, timeout: 120) + test('testrunner', testrunner, timeout: 300) endif # Man-pages.