Home | History | Annotate | Download | only in faft

Lines Matching refs:check_status

1038     def _call_action(self, action_tuple, check_status=False):
1047 @param check_status: Check the return value of action function. If not
1051 @raise TestFail: When check_status=True, action function not succeed.
1054 return all([self._call_action(action, check_status=check_status)
1081 if check_status and not ret:
1138 Wrapper around _call_action with check_status set to True. This is a
1140 calling _call_action with check_status=True.
1156 self._call_action(func, check_status=True)