Lines Matching defs:ksft_cnt
10 ksft_cnt = {"pass": 0, "fail": 0, "skip": 0}
30 if ksft_cnt['skip'] > 0:
31 print(f"# {ksft_cnt['skip']} skipped test(s) detected. Consider enabling relevant config options to improve coverage.")
34 f"# Totals: pass:{ksft_cnt['pass']} fail:{ksft_cnt['fail']} xfail:0 xpass:0 skip:{ksft_cnt['skip']} error:0"
55 ksft_cnt["pass"] += 1
60 ksft_cnt["fail"] += 1
65 ksft_cnt["skip"] += 1
76 if ksft_cnt["pass"] + ksft_cnt["skip"] == ksft_num_tests: