Compare commits

...

2 Commits

Author SHA1 Message Date
Omar Abdulla 42d69b9632 Update the commit hash of the test suite 2025-10-22 11:32:24 +03:00
Omar 48e7d69158 Drop the read lock in the remaining tasks logger (#193)
* Drop the read lock in the remaining tasks logger

* Increase substrate's timeout
2025-10-21 10:28:51 +00:00
3 changed files with 3 additions and 2 deletions
@@ -205,6 +205,7 @@ pub async fn handle_differential_tests(
?remaining_tasks,
"Remaining Tests"
);
drop(remaining_tasks);
tokio::time::sleep(Duration::from_secs(10)).await
}
});
@@ -218,7 +218,7 @@ impl SubstrateNode {
}
},
ProcessReadinessWaitBehavior::TimeBoundedWaitFunction {
max_wait_duration: Duration::from_secs(30),
max_wait_duration: Duration::from_secs(90),
check_function: Box::new(|_, stderr_line| match stderr_line {
Some(line) => Ok(line.contains(Self::SUBSTRATE_READY_MARKER)),
None => Ok(false),