From fbf986e37e44acccad3ad867c4839ce4bfa619c9 Mon Sep 17 00:00:00 2001 From: Stephane Glondu Date: Mon, 16 Mar 2026 08:11:08 +0100 Subject: [PATCH] Increase timeout in tests to cope with slowness of riscv64 Gbp-Pq: Name 0002-Increase-timeout-in-tests-to-cope-with-slowness-of-r.patch --- .../test/cohttp_lwt_unix_test/src/cohttp_lwt_unix_test.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cohttp-lwt-unix/test/cohttp_lwt_unix_test/src/cohttp_lwt_unix_test.ml b/cohttp-lwt-unix/test/cohttp_lwt_unix_test/src/cohttp_lwt_unix_test.ml index d399ea1..36c59fe 100644 --- a/cohttp-lwt-unix/test/cohttp_lwt_unix_test/src/cohttp_lwt_unix_test.ml +++ b/cohttp-lwt-unix/test/cohttp_lwt_unix_test/src/cohttp_lwt_unix_test.ml @@ -40,7 +40,7 @@ let temp_server ?port spec callback = Lwt.wakeup_exn server_failed_wake exn; Lwt.reraise exn) in - Lwt.pick [ Lwt_unix.with_timeout 5.0 (fun () -> callback uri); server_failed ] + Lwt.pick [ Lwt_unix.with_timeout 10.0 (fun () -> callback uri); server_failed ] >|= fun res -> Lwt.cancel server; res -- 2.30.2