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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2006-2009 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 <stdarg.h>
  23. #include <errno.h>
  24. #include <math.h>
  25. #include "common.h"
  26. #include "test_main.h"
  27. void
  28. test_float_convert (void)
  29. { static float data [] =
  30. { 0.0, 1.0, -1.0, 1.0 * M_PI, -1.0 * M_PI,
  31. 1e9, -1e9, 1e-9, -1e-9, 1e-10, -1e-10,
  32. 1e-19, -1e-19, 1e19, -1e19, 1e-20, -1e-20,
  33. } ;
  34. int k ;
  35. print_test_name (__func__) ;
  36. for (k = 0 ; k < ARRAY_LEN (data) ; k++)
  37. { unsigned char bytes [4] ;
  38. float test ;
  39. float32_le_write (data [k], bytes) ;
  40. test = float32_le_read (bytes) ;
  41. if (fabs (data [k] - test) > 1e-20)
  42. { printf ("nnLine %d : Test %d, little endian error %.15g -> %.15g.nn", __LINE__, k, data [k], test ) ;
  43. exit (1) ;
  44. } ;
  45. float32_be_write (data [k], bytes) ;
  46. test = float32_be_read (bytes) ;
  47. if (fabs (data [k] - test) > 1e-20)
  48. { printf ("nnLine %d : Test %d, big endian error %.15g -> %.15g.nn", __LINE__, k, data [k], test) ;
  49. exit (1) ;
  50. } ;
  51. } ;
  52. puts ("ok") ;
  53. } /* test_float_convert */
  54. void
  55. test_double_convert (void)
  56. { static double data [] =
  57. { 0.0, 1.0, -1.0, 1.0 * M_PI, -1.0 * M_PI,
  58. 1e9, -1e9, 1e-9, -1e-9, 1e-10, -1e-10,
  59. 1e-19, -1e-19, 1e19, -1e19, 1e-20, -1e-20,
  60. } ;
  61. int k ;
  62. print_test_name (__func__) ;
  63. for (k = 0 ; k < ARRAY_LEN (data) ; k++)
  64. { unsigned char bytes [8] ;
  65. double test ;
  66. double64_le_write (data [k], bytes) ;
  67. test = double64_le_read (bytes) ;
  68. if (fabs (data [k] - test) > 1e-20)
  69. { printf ("nnLine %d : Test %d, little endian error %.15g -> %.15g.nn", __LINE__, k, data [k], test ) ;
  70. exit (1) ;
  71. } ;
  72. double64_be_write (data [k], bytes) ;
  73. test = double64_be_read (bytes) ;
  74. if (fabs (data [k] - test) > 1e-20)
  75. { printf ("nnLine %d : Test %d, big endian error %.15g -> %.15g.nn", __LINE__, k, data [k], test) ;
  76. exit (1) ;
  77. } ;
  78. } ;
  79. puts ("ok") ;
  80. } /* test_double_convert */