Only track stability for runs that did not timeout (#2561)

This commit is contained in:
Nils Bars 2024-09-26 14:12:33 +02:00 committed by GitHub
parent 3d1f0bfb0d
commit 5ab7a07f14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -207,7 +207,7 @@ where
.observers_mut()
.post_exec_all(state, &input, &exit_kind)?;
if self.track_stability {
if self.track_stability && exit_kind != ExitKind::Timeout {
let map = &executor.observers()[&self.map_observer_handle]
.as_ref()
.to_vec();