Lines Matching full:known
47 # Some test cases are known to fail in ways which are not harmful or dangerous.
48 # In these cases simply mark the test as a known failure until it can be
52 known_reason = 'Known issue'
137 # These tests are known to fail, thus we use this list to prevent these
143 # For each known failure it is recommended to link to a GitHub issue by
147 known = { variable
163 known.update({
178 known.update({
195 # For each known failure it is recommended to link to a GitHub issue by
439 if setup in known and known[setup][0] == "SKIP":
444 if (test in known and results[test] in known[test][0]):
463 if test in known:
464 if known[test][1] == na_reason:
466 elif isinstance(known[test][1], int):
467 expect = f"{issue_url}{known[test][1]}"
469 expect = known[test][1]
475 elif setup in known and known[setup][0] == "SKIP" and setup != test:
484 for test in sorted(known.keys()):
489 print(f" {results[test]} {test} (expected {known[test][0]})")
493 expect = "PASS" if test not in known else known[test][0]