Skip to content

Commit

Permalink
test update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bret Ambrose committed Nov 5, 2024
1 parent 381f3dd commit e63c0a8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/byo_crypto_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ static struct byo_crypto_common_tester c_tester;
static int s_byo_crypto_common_tester_init(struct aws_allocator *allocator, struct byo_crypto_common_tester *tester) {
AWS_ZERO_STRUCT(*tester);
aws_io_library_init(allocator);
tester->el_group = aws_event_loop_group_new_default(allocator, 0, NULL);

struct aws_event_loop_group_options elg_options = {
.loop_count = 0,
};
tester->el_group = aws_event_loop_group_new(allocator, &elg_options);
struct aws_mutex mutex = AWS_MUTEX_INIT;
struct aws_condition_variable condition_variable = AWS_CONDITION_VARIABLE_INIT;
tester->mutex = mutex;
Expand Down

0 comments on commit e63c0a8

Please sign in to comment.