| 10145 | m_ctx.completeCycle(); |
| 10146 | } |
| 10147 | void TrackerBase::fail() { |
| 10148 | m_runState = Failed; |
| 10149 | if (m_parent) |
| 10150 | m_parent->markAsNeedingAnotherRun(); |
| 10151 | moveToParent(); |
| 10152 | m_ctx.completeCycle(); |
| 10153 | } |
| 10154 | void TrackerBase::markAsNeedingAnotherRun() { |
| 10155 | m_runState = NeedsAnotherRun; |
| 10156 | } |
no test coverage detected