diff options
author | 2024-10-15 13:14:31 +0100 | |
---|---|---|
committer | 2024-10-17 14:24:13 +0000 | |
commit | 25e5dcdbed13aa6ffc26cad8c4813098f9e48621 (patch) | |
tree | fc7af3cd17f67a6fe2dbebca9acd2cd53637015b | |
parent | 0d8683f53e28450bb250b31440d6f5b2b75380fc (diff) |
Fix typo in regen-test-files's post-execution statistics.
Test: Run `art/test/utils/regen-test-files`, check its standard output
Bug: 147818031
Change-Id: Ic169c2dec07e99d699fdc5a89ba070953d0ce311
-rwxr-xr-x | test/utils/regen-test-files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/regen-test-files b/test/utils/regen-test-files index 5e12a0c879..861a758aee 100755 --- a/test/utils/regen-test-files +++ b/test/utils/regen-test-files @@ -1164,7 +1164,7 @@ class Generator: (num_mainline_presubmit_gtests, "ART gtests", mainline_presubmit_gtests_percentage, "mainline-presubmit"), (num_presubmit_gtests, "ART gtests", presubmit_gtests_percentage, "presubmit"), - (num_postsubmit_gtests, "ART gtests", postsubmit_gtests_percentage, "presubmit"), + (num_postsubmit_gtests, "ART gtests", postsubmit_gtests_percentage, "postsubmit"), ]: print( f" {num_tests:3d} {test_kind} ({tests_percentage}%) in `{test_group_name}` test group.") |