1 /* Reporting a numeric comparison failure.
2 Copyright (C) 2017-2018 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 <http://www.gnu.org/licenses/>. */
21 #include <support/check.h>
24 report (const char *which
, const char *expr
, long long value
, int positive
,
27 printf (" %s: ", which
);
29 printf ("%llu", (unsigned long long) value
);
31 printf ("%lld", value
);
32 unsigned long long mask
33 = (~0ULL) >> (8 * (sizeof (unsigned long long) - size
));
34 printf (" (0x%llx); from: %s\n", (unsigned long long) value
& mask
, expr
);
38 support_test_compare_failure (const char *file
, int line
,
39 const char *left_expr
,
43 const char *right_expr
,
44 long long right_value
,
48 int saved_errno
= errno
;
49 support_record_failure ();
50 if (left_size
!= right_size
)
51 printf ("%s:%d: numeric comparison failure (widths %d and %d)\n",
52 file
, line
, left_size
* 8, right_size
* 8);
54 printf ("%s:%d: numeric comparison failure\n", file
, line
);
55 report (" left", left_expr
, left_value
, left_positive
, left_size
);
56 report ("right", right_expr
, right_value
, right_positive
, right_size
);