We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 724aa06 + 07a5925 commit d199320Copy full SHA for d199320
tests/tests.rs
@@ -92,8 +92,9 @@ fn run_bindgen_tests() {
92
.and_then(|x| x.parse::<usize>().ok())
93
.unwrap_or(TEST_BATCH_DEFAULT_SIZE);
94
95
- // Spawn batch_size child to run in parallel
96
- // and wait on all of them before processing the next batch
+ // Spawn `batch_size` children to run in parallel and wait on all of them
+ // before processing the next batch. This puts a limit on the resources
97
+ // consumed when testing, so that we don't overload the system.
98
99
let children = tests.chunks(batch_size).map(|x| {
100
x.iter().map(|entry| {
0 commit comments