Re: [PATCH bpf-next] selftests/bpf: fix subtest number formatting in test_progs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, May 20, 2022 at 12:02 AM Mykola Lysenko <mykolal@xxxxxx> wrote:
>
> Remove weird spaces around / while preserving proper
> indentation
>
> Signed-off-by: Mykola Lysenko <mykolal@xxxxxx>
> ---
>  tools/testing/selftests/bpf/test_progs.c | 15 ++++++++++++---
>  1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/tools/testing/selftests/bpf/test_progs.c b/tools/testing/selftests/bpf/test_progs.c
> index ecf69fce036e..262b7577b0ef 100644
> --- a/tools/testing/selftests/bpf/test_progs.c
> +++ b/tools/testing/selftests/bpf/test_progs.c
> @@ -230,9 +230,14 @@ static void print_test_log(char *log_buf, size_t log_cnt)
>                 fprintf(env.stdout, "\n");
>  }
>
> +#define TEST_NUM_WIDTH 7
> +#define STRINGIFY(value) #value
> +#define QUOTE(macro) STRINGIFY(macro)
> +#define TEST_NUM_WIDTH_STR QUOTE(TEST_NUM_WIDTH)
> +
>  static void print_test_name(int test_num, const char *test_name, char *result)
>  {
> -       fprintf(env.stdout, "#%-9d %s", test_num, test_name);
> +       fprintf(env.stdout, "#%-" TEST_NUM_WIDTH_STR "d %s", test_num, test_name);

this is equivalent to

fprintf(env.stdout, "#%-*d %s", TEST_NUM_WIDTH, test_num, test_name);

but doesn't require macro stringify sequence, so I dropped STRINGIFY,
QUOTE and TEST_NU_WIDTH_STR and replaced it with * argument here and
below

>
>         if (result)
>                 fprintf(env.stdout, ":%s", result);
> @@ -244,8 +249,12 @@ static void print_subtest_name(int test_num, int subtest_num,
>                                const char *test_name, char *subtest_name,
>                                char *result)
>  {
> -       fprintf(env.stdout, "#%-3d/%-5d %s/%s",
> -               test_num, subtest_num,
> +       char test_num_str[TEST_NUM_WIDTH + 1];
> +
> +       snprintf(test_num_str, sizeof(test_num_str), "%d/%d", test_num, subtest_num);
> +
> +       fprintf(env.stdout, "#%-" TEST_NUM_WIDTH_STR "s %s/%s",
> +               test_num_str,
>                 test_name, subtest_name);
>
>         if (result)
> --
> 2.30.2
>



[Index of Archives]     [Linux Samsung SoC]     [Linux Rockchip SoC]     [Linux Actions SoC]     [Linux for Synopsys ARC Processors]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]


  Powered by Linux