2
0

sanitytest.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <stdio.h>
  10. #include <string.h>
  11. #include <internal/numbers.h>
  12. #define TEST(e) \
  13. do { \
  14. if (!(e)) { \
  15. fprintf(stderr, "Failed " #e "\n"); \
  16. failures++; \
  17. } \
  18. } while (0)
  19. enum smallchoices { sa, sb, sc };
  20. enum medchoices { ma, mb, mc, md, me, mf, mg, mh, mi, mj, mk, ml };
  21. enum largechoices {
  22. a01, b01, c01, d01, e01, f01, g01, h01, i01, j01,
  23. a02, b02, c02, d02, e02, f02, g02, h02, i02, j02,
  24. a03, b03, c03, d03, e03, f03, g03, h03, i03, j03,
  25. a04, b04, c04, d04, e04, f04, g04, h04, i04, j04,
  26. a05, b05, c05, d05, e05, f05, g05, h05, i05, j05,
  27. a06, b06, c06, d06, e06, f06, g06, h06, i06, j06,
  28. a07, b07, c07, d07, e07, f07, g07, h07, i07, j07,
  29. a08, b08, c08, d08, e08, f08, g08, h08, i08, j08,
  30. a09, b09, c09, d09, e09, f09, g09, h09, i09, j09,
  31. a10, b10, c10, d10, e10, f10, g10, h10, i10, j10,
  32. xxx };
  33. int main()
  34. {
  35. char *p;
  36. char bytes[sizeof(p)];
  37. int failures = 0;
  38. /* Is NULL equivalent to all-bytes-zero? */
  39. p = NULL;
  40. memset(bytes, 0, sizeof(bytes));
  41. TEST(memcmp(&p, bytes, sizeof(bytes)) == 0);
  42. /* Enum size */
  43. TEST(sizeof(enum smallchoices) == sizeof(int));
  44. TEST(sizeof(enum medchoices) == sizeof(int));
  45. TEST(sizeof(enum largechoices) == sizeof(int));
  46. /* Basic two's complement checks. */
  47. TEST(~(-1) == 0);
  48. TEST(~(-1L) == 0L);
  49. /* Check that values with sign bit 1 and value bits 0 are valid */
  50. TEST(-(INT_MIN + 1) == INT_MAX);
  51. TEST(-(LONG_MIN + 1) == LONG_MAX);
  52. /* Check that unsigned-to-signed conversions preserve bit patterns */
  53. TEST((int)((unsigned int)INT_MAX + 1) == INT_MIN);
  54. TEST((long)((unsigned long)LONG_MAX + 1) == LONG_MIN);
  55. return failures;
  56. }