perf tests: Let 'perf test list' display subtests
authorHendrik Brueckner <brueckner@linux.ibm.com>
Fri, 13 Apr 2018 07:42:23 +0000 (09:42 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 26 Apr 2018 16:47:07 +0000 (13:47 -0300)
The output of perf test and perf test list differ because perf test list
does not display subtests.  Correct this behavior and also let perf test
list report subtests.

For example:

$ ./perf test 2>&1 |wc -l
65

Without this commit:
$ ./perf test list 2>&1 |wc -l
57

With this commit:
$ ./perf test list 2>&1 |wc -l
65

Signed-off-by: Hendrik Brueckner <brueckner@linux.ibm.com>
Reviewed-by: Thomas Richter <tmricht@linux.ibm.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: linux-s390@vger.kernel.org
LPU-Reference: 1523605343-11970-1-git-send-email-brueckner@linux.ibm.com
Link: https://lkml.kernel.org/n/tip-efb74jw7x2xs2bucp5hf4ilu@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/tests/builtin-test.c

index cac8f8889bc3b540355963ee793fb0e4aadbfd12..2bde505e2e7ea0c2b1157e2734be89d291351e66 100644 (file)
@@ -654,6 +654,15 @@ static int perf_test__list(int argc, const char **argv)
                        continue;
 
                pr_info("%2d: %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,
+                                       t->subtest.get_desc(subi));
+               }
        }
 
        perf_test__list_shell(argc, argv, i);