--- /dev/null
+From: Stephane Glondu <steph@glondu.net>
+Date: Mon, 16 Mar 2026 08:11:08 +0100
+Subject: Increase timeout in tests to cope with slowness of riscv64
+
+---
+ cohttp-lwt-unix/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