Lines Matching full:known
49 # Some test cases are known to fail in ways which are not harmful or dangerous.
50 # In these cases simply mark the test as a known failure until it can be
54 known_reason = 'Known issue'
144 # These tests are known to fail, thus we use this list to prevent these
150 # For each known failure it is recommended to link to a GitHub issue by
154 known = { variable
170 known.update({
185 known.update({
202 # For each known failure it is recommended to link to a GitHub issue by
449 if setup in known and known[setup][0] == "SKIP":
454 if (test in known and results[test] in known[test][0]):
473 if test in known:
474 if known[test][1] == na_reason:
476 elif isinstance(known[test][1], int):
477 expect = f"{issue_url}{known[test][1]}"
479 expect = known[test][1]
485 elif setup in known and known[setup][0] == "SKIP" and setup != test:
494 for test in sorted(known.keys()):
499 print(f" {results[test]} {test} (expected {known[test][0]})")
503 expect = "PASS" if test not in known else known[test][0]