Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

vsprintf_test.c 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. *
  19. * You can also choose to distribute this program under the terms of
  20. * the Unmodified Binary Distribution Licence (as given in the file
  21. * COPYING.UBDL), provided that you have satisfied its requirements.
  22. */
  23. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  24. /** @file
  25. *
  26. * vsprintf() self-tests
  27. *
  28. */
  29. /* Forcibly enable assertions */
  30. #undef NDEBUG
  31. #include <string.h>
  32. #include <stdio.h>
  33. #include <ipxe/test.h>
  34. /**
  35. * Report an snprintf() test result
  36. *
  37. */
  38. #define snprintf_ok( len, result, format, ... ) do { \
  39. char actual[ (len) ]; \
  40. const char expected[] = result; \
  41. size_t actual_len; \
  42. \
  43. actual_len = snprintf ( actual, sizeof ( actual ), \
  44. format, ##__VA_ARGS__ ); \
  45. ok ( actual_len >= strlen ( result ) ); \
  46. ok ( strcmp ( actual, expected ) == 0 ); \
  47. if ( strcmp ( actual, expected ) != 0 ) { \
  48. DBG ( "SNPRINTF expected \"%s\", got \"%s\"\n", \
  49. expected, actual ); \
  50. } \
  51. } while ( 0 )
  52. /**
  53. * Perform vsprintf() self-tests
  54. *
  55. */
  56. static void vsprintf_test_exec ( void ) {
  57. /* Constant string */
  58. snprintf_ok ( 16, "Testing", "Testing" );
  59. /* Constant string, truncated to fit */
  60. snprintf_ok ( 5, "Test", "Testing" );
  61. /* Basic format specifiers */
  62. snprintf_ok ( 16, "%", "%%" );
  63. snprintf_ok ( 16, "ABC", "%c%c%c", 'A', 'B', 'C' );
  64. snprintf_ok ( 16, "abc", "%lc%lc%lc", L'a', L'b', L'c' );
  65. snprintf_ok ( 16, "Hello world", "%s %s", "Hello", "world" );
  66. snprintf_ok ( 16, "Goodbye world", "%ls %s", L"Goodbye", "world" );
  67. snprintf_ok ( 16, "0x1234abcd", "%p", ( ( void * ) 0x1234abcd ) );
  68. snprintf_ok ( 16, "0xa723", "%#x", 0xa723 );
  69. snprintf_ok ( 16, "a723", "%x", 0xa723 );
  70. snprintf_ok ( 16, "0x0000a723", "%#08x", 0xa723 );
  71. snprintf_ok ( 16, "00A723", "%06X", 0xa723 );
  72. snprintf_ok ( 16, "9876abcd", "%lx", 0x9876abcdUL );
  73. snprintf_ok ( 16, "1234 5678", "%04llx %04llx", 0x1234ULL, 0x5678ULL );
  74. snprintf_ok ( 16, "123", "%d", 123 );
  75. snprintf_ok ( 16, "456", "%i", 456 );
  76. snprintf_ok ( 16, " 99", "%3d", 99 );
  77. snprintf_ok ( 16, "099", "%03d", 99 );
  78. snprintf_ok ( 16, "-72", "%d", -72 );
  79. snprintf_ok ( 16, " -72", "%4d", -72 );
  80. snprintf_ok ( 16, "-072", "%04d", -72 );
  81. snprintf_ok ( 16, "4", "%zd", sizeof ( uint32_t ) );
  82. snprintf_ok ( 16, "123456789", "%d", 123456789 );
  83. /* Realistic combinations */
  84. snprintf_ok ( 64, "DBG 0x1234 thingy at 0x0003f0c0+0x5c\n",
  85. "DBG %p %s at %#08lx+%#zx\n", ( ( void * ) 0x1234 ),
  86. "thingy", 0x3f0c0UL, ( ( size_t ) 0x5c ) );
  87. snprintf_ok ( 64, "PCI 00:1f.3", "PCI %02x:%02x.%x", 0x00, 0x1f, 0x03 );
  88. snprintf_ok ( 64, "Region [1000000,3f000000)", "Region [%llx,%llx)",
  89. 0x1000000ULL, 0x3f000000ULL );
  90. }
  91. /** vsprintf() self-test */
  92. struct self_test vsprintf_test __self_test = {
  93. .name = "vsprintf",
  94. .exec = vsprintf_test_exec,
  95. };