From: Carsten Haitzler carsten.haitzler@arm.com
This is in preparation for adding more tests that will need the test number to be 3 digts so they align nicely in the output.
Signed-off-by: Carsten Haitzler carsten.haitzler@arm.com --- tools/perf/tests/builtin-test.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c index 2f6a74d9f0bc..9091f7c74f8e 100644 --- a/tools/perf/tests/builtin-test.c +++ b/tools/perf/tests/builtin-test.c @@ -634,7 +634,7 @@ static int run_shell_tests(int argc, const char *argv[], int i, int width) continue;
st.file = ent->d_name; - pr_info("%2d: %-*s:", i, width, test.desc); + pr_info("%3d: %-*s:", i, width, test.desc); test_and_print(&test, false, -1); }
@@ -679,11 +679,11 @@ static int __cmd_test(int argc, const char *argv[], struct intlist *skiplist) }
if (t->is_supported && !t->is_supported()) { - pr_debug("%2d: %-*s: Disabled\n", i, width, t->desc); + pr_debug("%3d: %-*s: Disabled\n", i, width, t->desc); continue; }
- pr_info("%2d: %-*s:", i, width, t->desc); + pr_info("%3d: %-*s:", i, width, t->desc);
if (intlist__find(skiplist, i)) { color_fprintf(stderr, PERF_COLOR_YELLOW, " Skip (user override)\n"); @@ -723,7 +723,7 @@ static int __cmd_test(int argc, const char *argv[], struct intlist *skiplist) if (!perf_test__matches(t->subtest.get_desc(subi), curr, argc, argv)) continue;
- pr_info("%2d.%1d: %-*s:", i, subi + 1, subw, + pr_info("%3d.%1d: %-*s:", i, subi + 1, subw, t->subtest.get_desc(subi)); err = test_and_print(t, skip, subi); if (err != TEST_OK && t->subtest.skip_if_fail) @@ -759,7 +759,7 @@ static int perf_test__list_shell(int argc, const char **argv, int i) if (!perf_test__matches(t.desc, curr, argc, argv)) continue;
- pr_info("%2d: %s\n", i, t.desc); + pr_info("%3d: %s\n", i, t.desc); }
closedir(dir); @@ -779,14 +779,14 @@ static int perf_test__list(int argc, const char **argv) (t->is_supported && !t->is_supported())) continue;
- pr_info("%2d: %s\n", i, t->desc); + pr_info("%3d: %s\n", i, t->desc);
if (t->subtest.get_nr) { int subn = t->subtest.get_nr(); int subi;
for (subi = 0; subi < subn; subi++) - pr_info("%2d:%1d: %s\n", i, subi + 1, + pr_info("%3d:%1d: %s\n", i, subi + 1, t->subtest.get_desc(subi)); } }