2023-07-04.test-timeout.patch 1.0 KB

123456789101112131415161718192021
  1. Subject: Increase timeout for the adv-standalone test
  2. Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Date: 2023-07-04
  4. Forwarded: https://github.com/latchset/tang/issues/130
  5. The mipsel buildd timed out and would probably have needed 80 seconds,
  6. on a fairly old hppa box the test take some whopping 643 seconds.
  7. --- a/tests/meson.build
  8. +++ b/tests/meson.build
  9. @@ -40,8 +40,8 @@
  10. env.set('SOCAT', socat.path())
  11. endif
  12. -test('adv-standalone', find_program('adv-standalone'), env: env, timeout: 360)
  13. -test('adv-standalone-endpoint', find_program('adv-standalone-endpoint'), env: env, timeout: 360)
  14. +test('adv-standalone', find_program('adv-standalone'), env: env, timeout: 1200)
  15. +test('adv-standalone-endpoint', find_program('adv-standalone-endpoint'), env: env, timeout: 1200)
  16. test('adv-socat', find_program('adv-socat'), env: env, timeout: 360)
  17. test('adv-socat-endpoint', find_program('adv-socat-endpoint'), env: env, timeout: 360)
  18. test('rec-standalone', find_program('rec-standalone'), env: env, timeout: 360)