The attached patch should fix this by skipping the tests until upstream fixes 
this.

werdahias
diff --git a/tests/timeouts.rs b/tests/timeouts.rs
index 13c3f9e..68fdc7c 100644
--- a/tests/timeouts.rs
+++ b/tests/timeouts.rs
@@ -10,6 +10,7 @@ use testserver::mock;
 mod utils;
 
 /// Issue #3
+#[cfg(not(target_arch = "s390x"))]
 #[test]
 fn request_errors_if_read_timeout_is_reached() {
     // Spawn a slow server.
@@ -31,6 +32,7 @@ fn request_errors_if_read_timeout_is_reached() {
 }
 
 /// Issue #154
+#[cfg(not(target_arch = "s390x"))]
 #[test]
 fn timeout_during_response_body_produces_error() {
     struct SlowReader;

Reply via email to