Lines Matching refs:outcomes
74 if testcase.outcomes and statusfile.OnlyStandardVariant(
75 testcase.outcomes):
77 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes):
82 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes):
190 t.outcomes = self.rules[testname]
191 if statusfile.DoSkip(t.outcomes):
193 for outcome in t.outcomes:
196 flaky = statusfile.IsFlaky(t.outcomes)
197 slow = statusfile.IsSlow(t.outcomes)
198 pass_fail = statusfile.IsPassOrFail(t.outcomes)
204 t.outcomes |= self.wildcards[rule]
205 if statusfile.DoSkip(t.outcomes):
208 flaky = flaky or statusfile.IsFlaky(t.outcomes)
209 slow = slow or statusfile.IsSlow(t.outcomes)
210 pass_fail = pass_fail or statusfile.IsPassOrFail(t.outcomes)
292 return not outcome in (testcase.outcomes or [statusfile.PASS])