Skip to content

Commit

Permalink
Increase concurrent workers
Browse files Browse the repository at this point in the history
  • Loading branch information
tidwall committed Apr 11, 2024
1 parent 7a96dfc commit 5364a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void co_work_runner(int argc, void *argv[]) {

void co_work(int argc, void *argv[]) {
(void)argc; (void)argv;
for (int i = 0; i < 1000; i++) {
for (int i = 0; i < 10000; i++) {
expect(neco_start(co_work_runner, 1, &i), NECO_OK);
}
}
Expand Down

0 comments on commit 5364a33

Please sign in to comment.