Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2024-01-16 10:12:59 +0300
committerSebastian Dröge <sebastian@centricular.com>2024-01-16 10:13:41 +0300
commit73a53e38c4de5d5ade4f2cc9d0e56a18c2e7e35a (patch)
tree7e5c7b09640388f8c755dfd5827c2790ac57034b
parentfd3675aac04d07f4022d42aa7912925cccd9f0dd (diff)
aws: s3: Disable remaining tests too for now
They fail state changes, which cases `GstHarness` to abort.
-rw-r--r--net/aws/tests/s3.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs
index 295aec07..ba1b3d79 100644
--- a/net/aws/tests/s3.rs
+++ b/net/aws/tests/s3.rs
@@ -173,16 +173,19 @@ 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;