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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2003-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 "common.h"
  25. #include "test_main.h"
  26. #define CMP_0_ARGS(line,err,fmt)
  27. { psf->logindex = 0 ;
  28. snprintf (buffer, sizeof (buffer), (fmt)) ;
  29. psf_log_printf (psf, (fmt)) ;
  30. err += compare_strings_or_die (line, fmt, buffer, psf->logbuffer) ;
  31. }
  32. #define CMP_2_ARGS(line,err,fmt,a)
  33. { psf->logindex = 0 ;
  34. snprintf (buffer, sizeof (buffer), (fmt), (a), (a)) ;
  35. psf_log_printf (psf, (fmt), (a), (a)) ;
  36. err += compare_strings_or_die (line, fmt, buffer, psf->logbuffer) ;
  37. }
  38. #define CMP_4_ARGS(line,err,fmt,a)
  39. { psf->logindex = 0 ;
  40. snprintf (buffer, sizeof (buffer), (fmt), (a), (a), (a), (a)) ;
  41. psf_log_printf (psf, (fmt), (a), (a), (a), (a)) ;
  42. err += compare_strings_or_die (line, fmt, buffer, psf->logbuffer) ;
  43. }
  44. #define CMP_5_ARGS(line,err,fmt,a)
  45. { psf->logindex = 0 ;
  46. snprintf (buffer, sizeof (buffer), (fmt), (a), (a), (a), (a), (a)) ;
  47. psf_log_printf (psf, (fmt), (a), (a), (a), (a), (a)) ;
  48. err += compare_strings_or_die (line, fmt, buffer, psf->logbuffer) ;
  49. }
  50. #define CMP_6_ARGS(line,err,fmt,a)
  51. { psf->logindex = 0 ;
  52. snprintf (buffer, sizeof (buffer), (fmt), (a), (a), (a), (a), (a), (a)) ;
  53. psf_log_printf (psf, (fmt), (a), (a), (a), (a), (a), (a)) ;
  54. err += compare_strings_or_die (line, fmt, buffer, psf->logbuffer) ;
  55. }
  56. static int
  57. compare_strings_or_die (int linenum, const char *fmt, const char* s1, const char* s2)
  58. { int errors = 0 ;
  59. /*-puts (s1) ;puts (s2) ;-*/
  60. if (strcmp (s1, s2) != 0)
  61. { printf ("nnLine %d: string compare mismatch:nt", linenum) ;
  62. printf (""%s"n", fmt) ;
  63. printf ("t"%s"nt"%s"n", s1, s2) ;
  64. errors ++ ;
  65. } ;
  66. return errors ;
  67. } /* compare_strings_or_die */
  68. void
  69. test_log_printf (void)
  70. { static char buffer [2048] ;
  71. SF_PRIVATE sf_private, *psf ;
  72. int k, errors = 0 ;
  73. int int_values [] = { 0, 1, 12, 123, 1234, 123456, -1, -12, -123, -1234, -123456 } ;
  74. print_test_name ("Testing psf_log_printf") ;
  75. psf = &sf_private ;
  76. memset (psf, 0, sizeof (sf_private)) ;
  77. CMP_0_ARGS (__LINE__, errors, " ->%%<- ") ;
  78. /* Test printing of ints. */
  79. for (k = 0 ; k < ARRAY_LEN (int_values) ; k++)
  80. CMP_6_ARGS (__LINE__, errors, "int A : %d, % d, %4d, % 4d, %04d, % 04d", int_values [k]) ;
  81. for (k = 0 ; k < ARRAY_LEN (int_values) ; k++)
  82. CMP_5_ARGS (__LINE__, errors, "int B : %+d, %+4d, %+04d, %-d, %-4d", int_values [k]) ;
  83. for (k = 0 ; k < ARRAY_LEN (int_values) ; k++)
  84. CMP_2_ARGS (__LINE__, errors, "int C : %- d, %- 4d", int_values [k]) ;
  85. /* Test printing of unsigned ints. */
  86. for (k = 0 ; k < ARRAY_LEN (int_values) ; k++)
  87. CMP_4_ARGS (__LINE__, errors, "D : %u, %4u, %04u, %0u", int_values [k]) ;
  88. /* Test printing of hex ints. */
  89. for (k = 0 ; k < ARRAY_LEN (int_values) ; k++)
  90. CMP_4_ARGS (__LINE__, errors, "E : %X, %4X, %04X, %0X", int_values [k]) ;
  91. /* Test printing of strings. */
  92. CMP_4_ARGS (__LINE__, errors, "B %s, %3s, %8s, %-8s", "str") ;
  93. if (errors)
  94. { puts ("nExiting due to errors.n") ;
  95. exit (1) ;
  96. } ;
  97. puts ("ok") ;
  98. } /* test_log_printf */