tst-typesizes.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@redhat.com>, 2005.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <stdio.h>
  17. #include <pthreadP.h>
  18. #include <semaphore.h>
  19. static const struct
  20. {
  21. const char *name;
  22. size_t expected;
  23. size_t is;
  24. } types[] =
  25. {
  26. #define T(t, c) \
  27. { #t, c, sizeof (t) }
  28. T (pthread_attr_t, __SIZEOF_PTHREAD_ATTR_T),
  29. T (pthread_mutex_t, __SIZEOF_PTHREAD_MUTEX_T),
  30. T (pthread_mutexattr_t, __SIZEOF_PTHREAD_MUTEXATTR_T),
  31. T (pthread_cond_t, __SIZEOF_PTHREAD_COND_T),
  32. T (pthread_condattr_t, __SIZEOF_PTHREAD_CONDATTR_T),
  33. T (pthread_rwlock_t, __SIZEOF_PTHREAD_RWLOCK_T),
  34. T (pthread_rwlockattr_t, __SIZEOF_PTHREAD_RWLOCKATTR_T),
  35. T (pthread_barrier_t, __SIZEOF_PTHREAD_BARRIER_T),
  36. T (pthread_barrierattr_t, __SIZEOF_PTHREAD_BARRIERATTR_T)
  37. };
  38. static int
  39. do_test (void)
  40. {
  41. int result = 0;
  42. #define TEST_TYPE(name) \
  43. printf ("%s: ", #name); \
  44. if (sizeof (name) != sizeof (((name *) 0)->__size)) \
  45. { \
  46. printf ("expected %zu, is %zu\n", \
  47. sizeof (((name *) 0)->__size), sizeof (name)); \
  48. result = 1; \
  49. } \
  50. else \
  51. puts ("OK")
  52. TEST_TYPE (pthread_mutex_t);
  53. TEST_TYPE (pthread_cond_t);
  54. TEST_TYPE (pthread_rwlock_t);
  55. #define TEST_TYPE2(name, internal) \
  56. printf ("%s: ", #name); \
  57. if (sizeof (((name *) 0)->__size) < sizeof (internal)) \
  58. { \
  59. printf ("expected %zu, is %zu\n", \
  60. sizeof (((name *) 0)->__size), sizeof (internal)); \
  61. result = 1; \
  62. } \
  63. else \
  64. puts ("OK")
  65. TEST_TYPE2 (pthread_attr_t, struct pthread_attr);
  66. TEST_TYPE2 (pthread_mutexattr_t, struct pthread_mutexattr);
  67. TEST_TYPE2 (pthread_condattr_t, struct pthread_condattr);
  68. TEST_TYPE2 (pthread_rwlockattr_t, struct pthread_rwlockattr);
  69. TEST_TYPE2 (pthread_barrier_t, struct pthread_barrier);
  70. TEST_TYPE2 (pthread_barrierattr_t, struct pthread_barrierattr);
  71. TEST_TYPE2 (sem_t, struct new_sem);
  72. TEST_TYPE2 (sem_t, struct old_sem);
  73. for (size_t i = 0; i < sizeof (types) / sizeof (types[0]); ++i)
  74. if (types[i].expected != types[i].is)
  75. {
  76. printf ("%s: expected %zu, is %zu\n",
  77. types[i].name, types[i].expected, types[i].is);
  78. result = 1;
  79. }
  80. return result;
  81. }
  82. #define TEST_FUNCTION do_test ()
  83. #include "../test-skeleton.c"