Re: [PATCH 1/3] kunit: Improve format of the NOT_ERR_OR_NULL assertion

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

 



On Thu, 22 Aug 2024 at 03:15, Michal Wajdeczko
<michal.wajdeczko@xxxxxxxxx> wrote:
>
> Diagnostic message for failed KUNIT_ASSERT|EXPECT_NOT_ERR_OR_NULL
> shows only raw error code, like for this example:
>
>   void *myptr = ERR_PTR(-ENOMEM);
>   KUNIT_EXPECT_NOT_ERR_OR_NULL(test, myptr);
>
> we will get:
>
>   [ ] Expected myptr is not error, but is: -12
>
> but we can improve it by using more friendly error pointer format:
>
>   [ ] Expected myptr is not error, but is -ENOMEM
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@xxxxxxxxx>
> ---
> Cc: David Gow <davidgow@xxxxxxxxxx>
> Cc: Rae Moar <rmoar@xxxxxxxxxx>
> ---

I like this, though wouldn't mind also adding the numerical value
afterwards. Up to you, though, I can live without.

It does break the 'kunit_test_ptr_not_err_assert_format' test in
lib/kunit/assert_test.c: it should be fairly simple to update.

With the test fixed, this is:
Reviewed-by: David Gow <davidgow@xxxxxxxxxx>

-- David



-- David

>  lib/kunit/assert.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/kunit/assert.c b/lib/kunit/assert.c
> index 867aa5c4bccf..6e4333d0c6a0 100644
> --- a/lib/kunit/assert.c
> +++ b/lib/kunit/assert.c
> @@ -82,9 +82,9 @@ void kunit_ptr_not_err_assert_format(const struct kunit_assert *assert,
>                                   ptr_assert->text);
>         } else if (IS_ERR(ptr_assert->value)) {
>                 string_stream_add(stream,
> -                                 KUNIT_SUBTEST_INDENT "Expected %s is not error, but is: %ld\n",
> +                                 KUNIT_SUBTEST_INDENT "Expected %s is not error, but is %pe\n",
>                                   ptr_assert->text,
> -                                 PTR_ERR(ptr_assert->value));
> +                                 ptr_assert->value);
>         }
>         kunit_assert_print_msg(message, stream);
>  }
> --
> 2.43.0
>

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature


[Index of Archives]     [Linux Wireless]     [Linux Kernel]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Share Photos]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Samba]     [Device Mapper]

  Powered by Linux