]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
chore: Increase testrunner timeouts 17697/head
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 7 Jul 2026 07:43:16 +0000 (09:43 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Tue, 7 Jul 2026 07:43:16 +0000 (09:43 +0200)
Closes #17552

meson.build
pdns/dnsdistdist/meson.build
pdns/recursordist/meson.build

index a21f4e21867540130677268bf7949de33a75122d..1c28589ebb8a4ca012c3e82dd7ef22566f7b7546 100644 (file)
@@ -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
index 775fdfcea082366c5ca7923aa81566c97f0b2825..b4a9e6a956987104abe9bc392633adff6c5e95fe 100644 (file)
@@ -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.
index 76083e7bb8fbce4b4a2667da3c887e922c8797d9..37828abb02dff15809b478425f6be5104214909c 100644 (file)
@@ -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.