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

Audio

开发平台:

Unix_Linux

  1. [+ AutoGen5 template c +]
  2. /*
  3. ** Copyright (C) 2002-2005 Erik de Castro Lopo <erikd@mega-nerd.com>
  4. **
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU Lesser General Public License as published by
  7. ** the Free Software Foundation; either version 2.1 of the License, or
  8. ** (at your option) any later version.
  9. **
  10. ** This program 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
  13. ** GNU Lesser General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU Lesser General Public License
  16. ** along with this program; if not, write to the Free Software
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #include "sfconfig.h"
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include <errno.h>
  24. #include <inttypes.h>
  25. #if HAVE_UNISTD_H
  26. #include <unistd.h>
  27. #endif
  28. #include "common.h"
  29. #include "sfendian.h"
  30. #include "test_main.h"
  31. #define FMT_SHORT "0x%04xn"
  32. #define FMT_INT "0x%08xn"
  33. #define FMT_INT64 "0x%016" PRIx64 "n"
  34. /*==============================================================================
  35. ** Test functions.
  36. */
  37. [+ FOR int_type +]
  38. static void
  39. dump_[+ (get "name") +]_array (const char * name, [+ (get "name") +] * data, int datalen)
  40. { int k ;
  41. printf ("%-6s : ", name) ;
  42. for (k = 0 ; k < datalen ; k++)
  43. printf ([+ (get "format") +], data [k]) ;
  44. putchar ('n') ;
  45. } /* dump_[+ (get "name") +]_array */
  46. static void
  47. test_endswap_[+ (get "name") +] (void)
  48. { [+ (get "name") +] orig [4], first [4], second [4] ;
  49. int k ;
  50. printf ("    %-40s : ", "test_endswap_[+ (get "name") +]") ;
  51. fflush (stdout) ;
  52. for (k = 0 ; k < ARRAY_LEN (orig) ; k++)
  53. orig [k] = [+ (get "value") +] + k ;
  54. endswap_[+ (get "name") +]_copy (first, orig, ARRAY_LEN (first)) ;
  55. endswap_[+ (get "name") +]_copy (second, first, ARRAY_LEN (second)) ;
  56. if (memcmp (orig, first, sizeof (orig)) == 0)
  57. { printf ("nnLine %d : test 1 : these two array should not be the same:nn", __LINE__) ;
  58. dump_[+ (get "name") +]_array ("orig", orig, ARRAY_LEN (orig)) ;
  59. dump_[+ (get "name") +]_array ("first", first, ARRAY_LEN (first)) ;
  60. exit (1) ;
  61. } ;
  62. if (memcmp (orig, second, sizeof (orig)) != 0)
  63. { printf ("nnLine %d : test 2 : these two array should be the same:nn", __LINE__) ;
  64. dump_[+ (get "name") +]_array ("orig", orig, ARRAY_LEN (orig)) ;
  65. dump_[+ (get "name") +]_array ("second", second, ARRAY_LEN (second)) ;
  66. exit (1) ;
  67. } ;
  68. endswap_[+ (get "name") +]_array (first, ARRAY_LEN (first)) ;
  69. if (memcmp (orig, first, sizeof (orig)) != 0)
  70. { printf ("nnLine %d : test 3 : these two array should be the same:nn", __LINE__) ;
  71. dump_[+ (get "name") +]_array ("orig", orig, ARRAY_LEN (orig)) ;
  72. dump_[+ (get "name") +]_array ("first", first, ARRAY_LEN (first)) ;
  73. exit (1) ;
  74. } ;
  75. endswap_[+ (get "name") +]_copy (first, orig, ARRAY_LEN (first)) ;
  76. endswap_[+ (get "name") +]_copy (first, first, ARRAY_LEN (first)) ;
  77. if (memcmp (orig, first, sizeof (orig)) != 0)
  78. { printf ("nnLine %d : test 4 : these two array should be the same:nn", __LINE__) ;
  79. dump_[+ (get "name") +]_array ("orig", orig, ARRAY_LEN (orig)) ;
  80. dump_[+ (get "name") +]_array ("first", first, ARRAY_LEN (first)) ;
  81. exit (1) ;
  82. } ;
  83. puts ("ok") ;
  84. } /* test_endswap_[+ (get "name") +] */
  85. [+ ENDFOR int_type
  86. +]
  87. void
  88. test_endswap (void)
  89. {
  90. [+ FOR int_type
  91. +] test_endswap_[+ (get "name") +] () ;
  92. [+ ENDFOR int_type
  93. +]
  94. } /* test_endswap */