We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3b44cc commit fd06af4Copy full SHA for fd06af4
src/cargo/core/resolver/types.rs
@@ -54,7 +54,11 @@ impl ResolverProgress {
54
// with all the algorithm improvements.
55
// If any of them are removed then it takes more than I am willing to measure.
56
// So lets fail the test fast if we have ben running for two long.
57
- debug_assert!(self.ticks < 50_000);
+ debug_assert!(
58
+ self.ticks < 50_000,
59
+ "got to 50_000 ticks in {:?}",
60
+ self.start.elapsed()
61
+ );
62
// The largest test in our suite takes less then 30 sec
63
// with all the improvements to how fast a tick can go.
64
0 commit comments