Report failure to the trace.
This commit is contained in:
parent
6cac64b6bd
commit
cab0931cc1
|
|
@ -126,10 +126,13 @@ class Controller(
|
|||
frameStack.reset(savedFrame)
|
||||
}
|
||||
|
||||
if (failure == null) {
|
||||
// normal termination: skip the other alternatives
|
||||
break
|
||||
if (failure != null) {
|
||||
trace.failure(failure)
|
||||
continue
|
||||
}
|
||||
|
||||
// normal termination: skip the other alternatives
|
||||
break
|
||||
}
|
||||
|
||||
if (failure != null) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue