File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -428,7 +428,7 @@ impl Tsffs {
428428 let ( exit_kind, iteration_count) = match kind {
429429 SolutionKind :: Timeout => ( ExitKind :: Timeout , IterationCount :: Timeout ) ,
430430 SolutionKind :: Exception { .. }
431- | SolutionKind :: Breakpoint
431+ | SolutionKind :: Breakpoint { .. }
432432 | SolutionKind :: Manual => ( ExitKind :: Crash , IterationCount :: Solution ) ,
433433 } ;
434434
@@ -571,7 +571,7 @@ impl Tsffs {
571571 ) ;
572572
573573 self . stop_simulation ( StopReason :: Solution {
574- kind : SolutionKind :: Breakpoint ,
574+ kind : SolutionKind :: Breakpoint { number : breakpoint } ,
575575 } ) ?;
576576 }
577577 Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ pub(crate) use policy::SnapshotRestorePolicy;
2222pub ( crate ) enum SolutionKind {
2323 Timeout ,
2424 Exception { number : i64 } ,
25- Breakpoint ,
25+ Breakpoint { number : i64 } ,
2626 Manual ,
2727}
2828
You can’t perform that action at this time.
0 commit comments