Lines Matching refs:outcomes
52 if testcase.outcomes:
53 if statusfile.OnlyStandardVariant(testcase.outcomes):
55 if statusfile.OnlyFastVariants(testcase.outcomes):
60 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes):
88 self.rules = None # dictionary mapping test path to list of outcomes
89 self.wildcards = None # dictionary mapping test paths to list of outcomes
187 t.outcomes = t.outcomes | rules[testname]
188 if statusfile.DoSkip(t.outcomes):
190 for outcome in t.outcomes:
193 slow = statusfile.IsSlow(t.outcomes)
194 pass_fail = statusfile.IsPassOrFail(t.outcomes)
200 t.outcomes = t.outcomes | wildcards[rule]
201 if statusfile.DoSkip(t.outcomes):
204 slow = slow or statusfile.IsSlow(t.outcomes)
205 pass_fail = pass_fail or statusfile.IsPassOrFail(t.outcomes)
301 return not outcome in (testcase.outcomes or [statusfile.PASS])