[PATCH] Fix error message in memmove test to display correct src pointer

H.J. Lu hjl.tools@gmail.com
Thu Aug 26 16:21:58 GMT 2021


On Thu, Aug 26, 2021 at 8:49 AM Sunil K Pandey <skpgkp2@gmail.com> wrote:
>
> ---
>  string/test-memmove.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/string/test-memmove.c b/string/test-memmove.c
> index 670094c9dc..02f2170bfd 100644
> --- a/string/test-memmove.c
> +++ b/string/test-memmove.c
> @@ -298,7 +298,7 @@ do_test2 (size_t offset)
>                 {
>                   error (0, 0,
>                          "Wrong result in function %s dst \"%p\" src \"%p\" offset \"%zd\"",
> -                        impl->name, dst, large_buf, i);
> +                        impl->name, dst, src, i);

large_buf == source is true only in the first iteration.

>                   ret = 1;
>                   munmap ((void *) large_buf, size);
>                   return;
> --
> 2.31.1
>

LGTM.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>

-- 
H.J.


More information about the Libc-alpha mailing list