summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2024-10-15 13:14:31 +0100
committer Roland Levillain <rpl@google.com> 2024-10-17 14:24:13 +0000
commit25e5dcdbed13aa6ffc26cad8c4813098f9e48621 (patch)
treefc7af3cd17f67a6fe2dbebca9acd2cd53637015b
parent0d8683f53e28450bb250b31440d6f5b2b75380fc (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-xtest/utils/regen-test-files2
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.")