Gbp-Pq: Name 1003_increase_timeout_for_slow_arches_like_mips.patch
// If any of them are removed then it takes more than I am willing to measure.
// So lets fail the test fast if we have ben running for two long.
if cfg!(debug_assertions) && (self.ticks % 1000 == 0) {
- assert!(self.start.elapsed() - self.deps_time < Duration::from_secs(90));
+ assert!(self.start.elapsed() - self.deps_time < Duration::from_secs(360));
}
Ok(())
}
}
for _ in 0..n_concurrent_builds {
- let result = rx.recv_timeout(Duration::from_secs(30)).expect("Deadlock!");
+ let result = rx.recv_timeout(Duration::from_secs(120)).expect("Deadlock!");
execs().run_output(&result);
}
}
// The largest test in our suite takes less then 30 sec.
// So lets fail the test if we have ben running for two long.
- assert!(start.elapsed() < Duration::from_secs(60));
+ assert!(start.elapsed() < Duration::from_secs(240));
resolve
}