continue;
 
                st.file = ent->d_name;
-               pr_info("%2d: %-*s:", i, width, test_suite.desc);
+               pr_info("%3d: %-*s:", i, width, test_suite.desc);
 
                if (intlist__find(skiplist, i)) {
                        color_fprintf(stderr, PERF_COLOR_YELLOW, " Skip (user override)\n");
                                continue;
                }
 
-               pr_info("%2d: %-*s:", i, width, test_description(t, -1));
+               pr_info("%3d: %-*s:", i, width, test_description(t, -1));
 
                if (intlist__find(skiplist, i)) {
                        color_fprintf(stderr, PERF_COLOR_YELLOW, " Skip (user override)\n");
                                                        curr, argc, argv))
                                        continue;
 
-                               pr_info("%2d.%1d: %-*s:", i, subi + 1, subw,
+                               pr_info("%3d.%1d: %-*s:", i, subi + 1, subw,
                                        test_description(t, subi));
                                test_and_print(t, subi);
                        }
                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);
 
        }
 
                if (!perf_test__matches(test_description(t, -1), curr, argc, argv))
                        continue;
 
-               pr_info("%2d: %s\n", i, test_description(t, -1));
+               pr_info("%3d: %s\n", i, test_description(t, -1));
 
                if (has_subtests(t)) {
                        int subn = num_subtests(t);
                        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,
                                        test_description(t, subi));
                }
        }