Skip to content

Commit 2a4f6bb

Browse files
committed
well, on 32bit it will default to 1
1 parent bb61f3b commit 2a4f6bb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/s3_data_plane_tests.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5023,7 +5023,10 @@ static int s_test_s3_round_trip_dynamic_range_size_download_multipart(struct aws
50235023
ASSERT_SUCCESS(aws_s3_tester_init(allocator, &tester));
50245024

50255025
size_t stored_part_size = MB_TO_BYTES(15);
5026-
struct aws_s3_tester_client_options client_options = {0};
5026+
/* Gives it a higher memory limit to allow parts around 15MiB */
5027+
struct aws_s3_tester_client_options client_options = {
5028+
.memory_limit_in_bytes = GB_TO_BYTES(2),
5029+
};
50275030

50285031
struct aws_s3_client *client = NULL;
50295032
ASSERT_SUCCESS(aws_s3_tester_client_new(&tester, &client_options, &client));

0 commit comments

Comments
 (0)