2023-07-04.test-timeout.patch 795 B

12345678910111213141516171819
  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,7 +40,7 @@
  10. env.set('SOCAT', socat.path())
  11. endif
  12. -test('adv-standalone', find_program('adv-standalone'), env: env, timeout: 60)
  13. +test('adv-standalone', find_program('adv-standalone'), env: env, timeout: 1200)
  14. test('adv-socat', find_program('adv-socat'), env: env, timeout: 60)
  15. test('rec-standalone', find_program('rec-standalone'), env: env, timeout: 60)
  16. test('rec-socat', find_program('rec-socat'), env: env)