From 5aedcab32f9d5716581f8fa4fa49ac60a0996dd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 18 Jun 2024 08:50:07 +0300 Subject: [PATCH] Revert "aws: s3: Re-enable tests" This reverts commit b4b56eb2824dad0b65c4003d81c86a2f6e52dd4b. The tests are still failing. Part-of: --- net/aws/tests/s3.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs index 8aa58ff5..5d21d35c 100644 --- a/net/aws/tests/s3.rs +++ b/net/aws/tests/s3.rs @@ -173,48 +173,57 @@ mod tests { delete_object(region.clone(), &bucket, &key).await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_multipart_simple() { do_s3_multipart_test("s3-test").await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_multipart_whitespace() { do_s3_multipart_test("s3 test").await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_multipart_unicode() { do_s3_multipart_test("s3 🧪 😱").await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_simple() { do_s3_putobject_test("s3-put-object-test", None, None, None, true).await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_whitespace() { do_s3_putobject_test("s3 put object test", None, None, None, true).await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_unicode() { do_s3_putobject_test("s3 put object 🧪 😱", None, None, None, true).await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_flush_buffers() { // Awkward threshold as we push 5 buffers do_s3_putobject_test("s3-put-object-test fbuf", Some(2), None, None, true).await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_flush_bytes() { // Awkward threshold as we push 14 bytes per buffer do_s3_putobject_test("s3-put-object-test fbytes", None, Some(30), None, true).await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_flush_time() { do_s3_putobject_test( @@ -228,6 +237,7 @@ mod tests { .await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_on_eos() { // Disable all flush thresholds, so only EOS causes a flush @@ -241,6 +251,7 @@ mod tests { .await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_put_object_without_eos() { // Disable all flush thresholds, skip EOS, and cause a flush on error