Skip to content

Commit a863a16

Browse files
committed
disable the test
1 parent c334801 commit a863a16

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

tests/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ if(ENABLE_MRAP_TESTS)
171171
add_net_test_case(test_s3_get_object_less_than_part_size_mrap)
172172
add_net_test_case(test_s3_get_object_multipart_mrap)
173173
add_net_test_case(test_s3_put_object_less_than_part_size_mrap)
174-
add_net_test_case(test_s3_put_object_multipart_mrap)
175174
endif()
176175

177176
add_net_test_case(test_s3_round_trip)

tests/s3_data_plane_tests.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7144,6 +7144,7 @@ static int s_test_s3_get_object_multipart_mrap(struct aws_allocator *allocator,
71447144
return s_s3_get_object_mrap_helper(allocator, true /*multipart*/);
71457145
}
71467146

7147+
/* NOTE: MRAP doesn't support MPU. https://github.com/aws/aws-sdk-java-v2/discussions/3969 */
71477148
static int s_s3_put_object_mrap_helper(struct aws_allocator *allocator, bool multipart) {
71487149
struct aws_s3_tester tester;
71497150
ASSERT_SUCCESS(aws_s3_tester_init(allocator, &tester));
@@ -7197,12 +7198,6 @@ static int s_test_s3_put_object_less_than_part_size_mrap(struct aws_allocator *a
71977198
(void)ctx;
71987199
return s_s3_put_object_mrap_helper(allocator, false /*multipart*/);
71997200
}
7200-
/* Test multi-part put object through MRAP (multi-region access point) */
7201-
AWS_TEST_CASE(test_s3_put_object_multipart_mrap, s_test_s3_put_object_multipart_mrap)
7202-
static int s_test_s3_put_object_multipart_mrap(struct aws_allocator *allocator, void *ctx) {
7203-
(void)ctx;
7204-
return s_s3_put_object_mrap_helper(allocator, true /*multipart*/);
7205-
}
72067201

72077202
static struct aws_http_message *s_put_object_request_new(
72087203
struct aws_allocator *allocator,

0 commit comments

Comments
 (0)