We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9390279 + 7ed7c91 commit 24140eeCopy full SHA for 24140ee
scripts/ctest_parser.py
100644
100755
@@ -33,8 +33,8 @@ def summarize_results(results):
33
total_failed = len(results['Failed'])
34
total_crashed = total - (total_passed + total_skipped + total_failed)
35
36
- pass_rate_incl_skipped = percent(total_passed, total)
37
- pass_rate_excl_skipped = percent(total_passed, total - total_skipped)
+ pass_rate_incl_skipped = percent(total_passed + total_skipped, total)
+ pass_rate_excl_skipped = percent(total_passed, total)
38
39
skipped_rate = percent(total_skipped, total)
40
failed_rate = percent(total_failed, total)
0 commit comments