test_endswap.c
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:7k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2002-2005 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. **
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU Lesser General Public License as published by
  6. ** the Free Software Foundation; either version 2.1 of the License, or
  7. ** (at your option) any later version.
  8. **
  9. ** This program is distributed in the hope that it will be useful,
  10. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ** GNU Lesser General Public License for more details.
  13. **
  14. ** You should have received a copy of the GNU Lesser General Public License
  15. ** along with this program; if not, write to the Free Software
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include "sfconfig.h"
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <errno.h>
  23. #include <inttypes.h>
  24. #if HAVE_UNISTD_H
  25. #include <unistd.h>
  26. #endif
  27. #include "common.h"
  28. #include "sfendian.h"
  29. #include "test_main.h"
  30. #define FMT_SHORT "0x%04xn"
  31. #define FMT_INT "0x%08xn"
  32. #define FMT_INT64 "0x%016" PRIx64 "n"
  33. /*==============================================================================
  34. ** Test functions.
  35. */
  36. static void
  37. dump_short_array (const char * name, short * data, int datalen)
  38. { int k ;
  39. printf ("%-6s : ", name) ;
  40. for (k = 0 ; k < datalen ; k++)
  41. printf (FMT_SHORT, data [k]) ;
  42. putchar ('n') ;
  43. } /* dump_short_array */
  44. static void
  45. test_endswap_short (void)
  46. { short orig [4], first [4], second [4] ;
  47. int k ;
  48. printf ("    %-40s : ", "test_endswap_short") ;
  49. fflush (stdout) ;
  50. for (k = 0 ; k < ARRAY_LEN (orig) ; k++)
  51. orig [k] = 0x3210 + k ;
  52. endswap_short_copy (first, orig, ARRAY_LEN (first)) ;
  53. endswap_short_copy (second, first, ARRAY_LEN (second)) ;
  54. if (memcmp (orig, first, sizeof (orig)) == 0)
  55. { printf ("nnLine %d : test 1 : these two array should not be the same:nn", __LINE__) ;
  56. dump_short_array ("orig", orig, ARRAY_LEN (orig)) ;
  57. dump_short_array ("first", first, ARRAY_LEN (first)) ;
  58. exit (1) ;
  59. } ;
  60. if (memcmp (orig, second, sizeof (orig)) != 0)
  61. { printf ("nnLine %d : test 2 : these two array should be the same:nn", __LINE__) ;
  62. dump_short_array ("orig", orig, ARRAY_LEN (orig)) ;
  63. dump_short_array ("second", second, ARRAY_LEN (second)) ;
  64. exit (1) ;
  65. } ;
  66. endswap_short_array (first, ARRAY_LEN (first)) ;
  67. if (memcmp (orig, first, sizeof (orig)) != 0)
  68. { printf ("nnLine %d : test 3 : these two array should be the same:nn", __LINE__) ;
  69. dump_short_array ("orig", orig, ARRAY_LEN (orig)) ;
  70. dump_short_array ("first", first, ARRAY_LEN (first)) ;
  71. exit (1) ;
  72. } ;
  73. endswap_short_copy (first, orig, ARRAY_LEN (first)) ;
  74. endswap_short_copy (first, first, ARRAY_LEN (first)) ;
  75. if (memcmp (orig, first, sizeof (orig)) != 0)
  76. { printf ("nnLine %d : test 4 : these two array should be the same:nn", __LINE__) ;
  77. dump_short_array ("orig", orig, ARRAY_LEN (orig)) ;
  78. dump_short_array ("first", first, ARRAY_LEN (first)) ;
  79. exit (1) ;
  80. } ;
  81. puts ("ok") ;
  82. } /* test_endswap_short */
  83. static void
  84. dump_int_array (const char * name, int * data, int datalen)
  85. { int k ;
  86. printf ("%-6s : ", name) ;
  87. for (k = 0 ; k < datalen ; k++)
  88. printf (FMT_INT, data [k]) ;
  89. putchar ('n') ;
  90. } /* dump_int_array */
  91. static void
  92. test_endswap_int (void)
  93. { int orig [4], first [4], second [4] ;
  94. int k ;
  95. printf ("    %-40s : ", "test_endswap_int") ;
  96. fflush (stdout) ;
  97. for (k = 0 ; k < ARRAY_LEN (orig) ; k++)
  98. orig [k] = 0x76543210 + k ;
  99. endswap_int_copy (first, orig, ARRAY_LEN (first)) ;
  100. endswap_int_copy (second, first, ARRAY_LEN (second)) ;
  101. if (memcmp (orig, first, sizeof (orig)) == 0)
  102. { printf ("nnLine %d : test 1 : these two array should not be the same:nn", __LINE__) ;
  103. dump_int_array ("orig", orig, ARRAY_LEN (orig)) ;
  104. dump_int_array ("first", first, ARRAY_LEN (first)) ;
  105. exit (1) ;
  106. } ;
  107. if (memcmp (orig, second, sizeof (orig)) != 0)
  108. { printf ("nnLine %d : test 2 : these two array should be the same:nn", __LINE__) ;
  109. dump_int_array ("orig", orig, ARRAY_LEN (orig)) ;
  110. dump_int_array ("second", second, ARRAY_LEN (second)) ;
  111. exit (1) ;
  112. } ;
  113. endswap_int_array (first, ARRAY_LEN (first)) ;
  114. if (memcmp (orig, first, sizeof (orig)) != 0)
  115. { printf ("nnLine %d : test 3 : these two array should be the same:nn", __LINE__) ;
  116. dump_int_array ("orig", orig, ARRAY_LEN (orig)) ;
  117. dump_int_array ("first", first, ARRAY_LEN (first)) ;
  118. exit (1) ;
  119. } ;
  120. endswap_int_copy (first, orig, ARRAY_LEN (first)) ;
  121. endswap_int_copy (first, first, ARRAY_LEN (first)) ;
  122. if (memcmp (orig, first, sizeof (orig)) != 0)
  123. { printf ("nnLine %d : test 4 : these two array should be the same:nn", __LINE__) ;
  124. dump_int_array ("orig", orig, ARRAY_LEN (orig)) ;
  125. dump_int_array ("first", first, ARRAY_LEN (first)) ;
  126. exit (1) ;
  127. } ;
  128. puts ("ok") ;
  129. } /* test_endswap_int */
  130. static void
  131. dump_int64_t_array (const char * name, int64_t * data, int datalen)
  132. { int k ;
  133. printf ("%-6s : ", name) ;
  134. for (k = 0 ; k < datalen ; k++)
  135. printf (FMT_INT64, data [k]) ;
  136. putchar ('n') ;
  137. } /* dump_int64_t_array */
  138. static void
  139. test_endswap_int64_t (void)
  140. { int64_t orig [4], first [4], second [4] ;
  141. int k ;
  142. printf ("    %-40s : ", "test_endswap_int64_t") ;
  143. fflush (stdout) ;
  144. for (k = 0 ; k < ARRAY_LEN (orig) ; k++)
  145. orig [k] = 0x0807050540302010LL + k ;
  146. endswap_int64_t_copy (first, orig, ARRAY_LEN (first)) ;
  147. endswap_int64_t_copy (second, first, ARRAY_LEN (second)) ;
  148. if (memcmp (orig, first, sizeof (orig)) == 0)
  149. { printf ("nnLine %d : test 1 : these two array should not be the same:nn", __LINE__) ;
  150. dump_int64_t_array ("orig", orig, ARRAY_LEN (orig)) ;
  151. dump_int64_t_array ("first", first, ARRAY_LEN (first)) ;
  152. exit (1) ;
  153. } ;
  154. if (memcmp (orig, second, sizeof (orig)) != 0)
  155. { printf ("nnLine %d : test 2 : these two array should be the same:nn", __LINE__) ;
  156. dump_int64_t_array ("orig", orig, ARRAY_LEN (orig)) ;
  157. dump_int64_t_array ("second", second, ARRAY_LEN (second)) ;
  158. exit (1) ;
  159. } ;
  160. endswap_int64_t_array (first, ARRAY_LEN (first)) ;
  161. if (memcmp (orig, first, sizeof (orig)) != 0)
  162. { printf ("nnLine %d : test 3 : these two array should be the same:nn", __LINE__) ;
  163. dump_int64_t_array ("orig", orig, ARRAY_LEN (orig)) ;
  164. dump_int64_t_array ("first", first, ARRAY_LEN (first)) ;
  165. exit (1) ;
  166. } ;
  167. endswap_int64_t_copy (first, orig, ARRAY_LEN (first)) ;
  168. endswap_int64_t_copy (first, first, ARRAY_LEN (first)) ;
  169. if (memcmp (orig, first, sizeof (orig)) != 0)
  170. { printf ("nnLine %d : test 4 : these two array should be the same:nn", __LINE__) ;
  171. dump_int64_t_array ("orig", orig, ARRAY_LEN (orig)) ;
  172. dump_int64_t_array ("first", first, ARRAY_LEN (first)) ;
  173. exit (1) ;
  174. } ;
  175. puts ("ok") ;
  176. } /* test_endswap_int64_t */
  177. void
  178. test_endswap (void)
  179. {
  180. test_endswap_short () ;
  181. test_endswap_int () ;
  182. test_endswap_int64_t () ;
  183. } /* test_endswap */