1 /* Check two binary blobs for equality.
2 Copyright (C) 2018-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
22 #include <support/check.h>
23 #include <support/support.h>
24 #include <support/xmemstream.h>
27 report_length (const char *what
, unsigned long int length
, const char *expr
)
29 printf (" %s %lu bytes (from %s)\n", what
, length
, expr
);
33 report_blob (const char *what
, const unsigned char *blob
,
34 unsigned long int length
, const char *expr
)
36 if (blob
== NULL
&& length
> 0)
37 printf (" %s (evaluated from %s): NULL\n", what
, expr
);
40 printf (" %s (evaluated from %s):\n", what
, expr
);
41 char *quoted
= support_quote_blob (blob
, length
);
42 printf (" \"%s\"\n", quoted
);
46 for (unsigned long i
= 0; i
< length
; ++i
)
47 printf (" %02X", blob
[i
]);
53 support_test_compare_blob (const void *left
, unsigned long int left_length
,
54 const void *right
, unsigned long int right_length
,
55 const char *file
, int line
,
56 const char *left_expr
, const char *left_len_expr
,
57 const char *right_expr
, const char *right_len_expr
)
59 /* No differences are possible if both lengths are null. */
60 if (left_length
== 0 && right_length
== 0)
63 if (left_length
!= right_length
|| left
== NULL
|| right
== NULL
64 || memcmp (left
, right
, left_length
) != 0)
66 support_record_failure ();
67 printf ("%s:%d: error: blob comparison failed\n", file
, line
);
68 if (left_length
== right_length
)
69 printf (" blob length: %lu bytes\n", left_length
);
72 report_length ("left length: ", left_length
, left_len_expr
);
73 report_length ("right length:", right_length
, right_len_expr
);
75 report_blob ("left", left
, left_length
, left_expr
);
76 report_blob ("right", right
, right_length
, right_expr
);