| 44 | } |
| 45 | |
| 46 | void |
| 47 | RegressionSM::done(int astatus) |
| 48 | { |
| 49 | if (pending_action) { |
| 50 | pending_action->cancel(); |
| 51 | pending_action = nullptr; |
| 52 | } |
| 53 | set_status(astatus); |
| 54 | if (pstatus) { |
| 55 | *pstatus = status; |
| 56 | } |
| 57 | if (parent) { |
| 58 | parent->child_done(status); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | void |
| 63 | RegressionSM::run(int *apstatus) |
nothing calls this directly
no test coverage detected