Lines Matching defs:FAIL
35 FAIL = "FAIL"
54 for key in [SKIP, FAIL, PASS, CRASH, HEAVY, SLOW, FAIL_OK, NO_VARIANTS,
141 """Indicates if we join PASS and FAIL from two different outcome sets and
146 not (FAIL in outcomes1 or FAIL_OK in outcomes1) and
147 (FAIL in outcomes2 or FAIL_OK in outcomes2)
211 # A FAIL without PASS in one rule has always precedence over a single
212 # PASS (without FAIL) in another. Otherwise the default PASS expectation
213 # in a rule with a modifier (e.g. PASS, SLOW) would be joined to a FAIL
214 # from another rule (which intended to mark a test as FAIL and not as
215 # PASS and FAIL).