Test: remove pc from hash

This commit is contained in:
Alwin Berger 2023-04-24 12:52:29 +02:00
parent ce1a323063
commit c389a84c1b

View File

@ -114,7 +114,7 @@ impl Hash for RefinedFreeRTOSSystemState {
fn hash<H: Hasher>(&self, state: &mut H) {
self.current_task.hash(state);
self.ready_list_after.hash(state);
self.last_pc.hash(state);
// self.last_pc.hash(state);
}
}
impl RefinedFreeRTOSSystemState {