]>
git.saurik.com Git - wxWidgets.git/blob - tests/strings/vsnprintf.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/strings/vsnprintf.cpp
3 // Purpose: wxVsnprintf unit test
4 // Author: Francesco Montorsi
5 // (part of this file was taken from CMP.c of TRIO package
6 // written by Bjorn Reese and Daniel Stenberg)
8 // Copyright: (c) 2006 Francesco Montorsi, Bjorn Reese and Daniel Stenberg
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
27 #include "wx/wxchar.h"
31 // NOTE: for more info about the specification of wxVsnprintf() behaviour you can
32 // refer to the following page of the GNU libc manual:
33 // http://www.gnu.org/software/libc/manual/html_node/Formatted-Output.html
36 // ----------------------------------------------------------------------------
37 // global utilities for testing
38 // ----------------------------------------------------------------------------
40 #define MAX_TEST_LEN 1024
43 static wxChar buf
[MAX_TEST_LEN
];
46 // these macros makes it possible to write all tests without repeating a lot
47 // of times the wxT() macro
48 // NOTE: you should use expected strings with these macros which do not exceed
49 // MAX_TEST_LEN as these macro do check if the return value is == (int)wxStrlen(buf)
51 #define ASSERT_STR_EQUAL( a, b ) \
52 CPPUNIT_ASSERT_EQUAL( wxString(a), wxString(b) );
54 #define CMP6(expected, fmt, y, z, w, t) \
55 r=wxSnprintf(buf, MAX_TEST_LEN, wxT(fmt), y, z, w, t); \
56 CPPUNIT_ASSERT_EQUAL( r, wxStrlen(buf) ); \
57 ASSERT_STR_EQUAL( wxT(expected), buf );
59 #define CMP5(expected, fmt, y, z, w) \
60 r=wxSnprintf(buf, MAX_TEST_LEN, wxT(fmt), y, z, w); \
61 CPPUNIT_ASSERT_EQUAL( r, wxStrlen(buf) ); \
62 ASSERT_STR_EQUAL( wxT(expected), buf );
64 #define CMP4(expected, fmt, y, z) \
65 r=wxSnprintf(buf, MAX_TEST_LEN, wxT(fmt), y, z); \
66 CPPUNIT_ASSERT_EQUAL( r, wxStrlen(buf) ); \
67 ASSERT_STR_EQUAL( wxT(expected), buf );
69 #define CMP3(expected, fmt, y) \
70 r=wxSnprintf(buf, MAX_TEST_LEN, wxT(fmt), y); \
71 CPPUNIT_ASSERT_EQUAL( r, wxStrlen(buf) ); \
72 ASSERT_STR_EQUAL( wxT(expected), buf );
74 #define CMP3i(expected, fmt, y) \
75 r=wxSnprintf(buf, MAX_TEST_LEN, wxT(fmt), y); \
76 CPPUNIT_ASSERT_EQUAL( r, wxStrlen(buf) ); \
77 WX_ASSERT_MESSAGE( ("Expected \"%s\", got \"%s\"", expected, buf), \
78 wxStricmp(expected, buf) == 0 );
80 #define CMP2(expected, fmt) \
81 r=wxSnprintf(buf, MAX_TEST_LEN, wxT(fmt)); \
82 CPPUNIT_ASSERT_EQUAL( r, wxStrlen(buf) ); \
83 ASSERT_STR_EQUAL( wxT(expected), buf );
85 // NOTE: this macro is used also with too-small buffers (see Miscellaneous())
86 // test function, thus the return value can be > size and thus we
87 // cannot check if r == (int)wxStrlen(buf)
88 #define CMPTOSIZE(buffer, size, failuremsg, expected, fmt, x, y, z, w) \
89 r=wxSnprintf(buffer, size, wxT(fmt), x, y, z, w); \
90 CPPUNIT_ASSERT( r > 0 ); \
91 CPPUNIT_ASSERT_EQUAL_MESSAGE( \
93 wxString(wxT(expected)).Left(size - 1), \
96 // this is the same as wxSnprintf() but it passes the format string to
97 // wxVsnprintf() without using WX_ATTRIBUTE_PRINTF and thus suppresses the gcc
98 // checks (and resulting warnings) for the format string
100 // use with extreme care and only when you're really sure the warnings must be
104 wxUnsafeSnprintf(T
*buf
, size_t len
, const wxChar
*fmt
, ...)
109 int rc
= wxVsnprintf(buf
, len
, fmt
, args
);
116 // ----------------------------------------------------------------------------
118 // ----------------------------------------------------------------------------
120 class VsnprintfTestCase
: public CppUnit::TestCase
123 VsnprintfTestCase() {}
125 virtual void setUp();
128 CPPUNIT_TEST_SUITE( VsnprintfTestCase
);
139 CPPUNIT_TEST( Asterisk
);
140 CPPUNIT_TEST( Percent
);
142 CPPUNIT_TEST( LongLong
);
145 CPPUNIT_TEST( BigToSmallBuffer
);
146 CPPUNIT_TEST( WrongFormatStrings
);
147 CPPUNIT_TEST( Miscellaneous
);
148 CPPUNIT_TEST( GlibcMisc1
);
149 CPPUNIT_TEST( GlibcMisc2
);
150 CPPUNIT_TEST_SUITE_END();
170 void DoBigToSmallBuffer(T
*buffer
, int size
);
171 void BigToSmallBuffer();
173 void WrongFormatStrings();
175 // compares the expectedString and the result of wxVsnprintf() char by char
176 // for all its lenght (not only for first expectedLen chars) and also
177 // checks the return value
178 void DoMisc(int expectedLen
, const wxString
& expectedString
,
179 size_t max
, const wxChar
*format
, ...);
180 void Miscellaneous();
185 DECLARE_NO_COPY_CLASS(VsnprintfTestCase
)
188 // register in the unnamed registry so that these tests are run by default
189 CPPUNIT_TEST_SUITE_REGISTRATION( VsnprintfTestCase
);
191 // also include in its own registry so that these tests can be run alone
192 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( VsnprintfTestCase
, "VsnprintfTestCase" );
194 void VsnprintfTestCase::setUp()
196 // this call is required to avoid check failures when running on machines
197 // with a locale where the decimal point is not '.'
198 wxSetlocale(LC_ALL
, "C");
201 void VsnprintfTestCase::C()
203 CMP5("hi!", "%c%c%c", wxT('h'), wxT('i'), wxT('!'));
206 // the NULL characters _can_ be passed to %c to e.g. create strings
207 // with embedded NULs (because strings are not always supposed to be
210 DoMisc(14, wxT("Hello \0 World!"), 16, wxT("Hello %c World!"), wxT('\0'));
213 void VsnprintfTestCase::D()
215 CMP3("+123456", "%+d", 123456);
216 CMP3("-123456", "%d", -123456);
217 CMP3(" 123456", "% d", 123456);
218 CMP3(" 123456", "%10d", 123456);
219 CMP3("0000123456", "%010d", 123456);
220 CMP3("-123456 ", "%-10d", -123456);
223 void VsnprintfTestCase::X()
225 CMP3("ABCD", "%X", 0xABCD);
226 CMP3("0XABCD", "%#X", 0xABCD);
227 CMP3("0xabcd", "%#x", 0xABCD);
230 void VsnprintfTestCase::O()
232 CMP3("1234567", "%o", 01234567);
233 CMP3("01234567", "%#o", 01234567);
236 void VsnprintfTestCase::P()
238 // The exact format used for "%p" is not specified by the standard and so
239 // varies among different platforms, so we need to expect different results
240 // here (remember that while we test our own wxPrintf() code here, it uses
241 // the system sprintf() for actual formatting so the results are still
242 // different under different systems).
244 #ifdef wxUSING_VC_CRT_IO
245 // MSVC always prints pointers as %8X on 32 bit systems and as %16X on 64
247 #if SIZEOF_VOID_P == 4
248 CMP3i("00ABCDEF", "%p", (void*)0xABCDEF);
249 CMP3("00000000", "%p", (void*)NULL
);
250 #elif SIZEOF_VOID_P == 8
251 CMP3i("0000ABCDEFABCDEF", "%p", (void*)0xABCDEFABCDEF);
252 CMP3("0000000000000000", "%p", (void*)NULL
);
254 #elif defined(__MINGW32__)
255 // mingw32 uses MSVC CRT in old versions but is own implementation now
256 // which is somewhere in the middle as it uses %8x, so to catch both cases
257 // we use case-insensitive comparison here.
258 CMP3("0xabcdef", "%p", (void*)0xABCDEF);
259 CMP3("0", "%p", (void*)NULL
);
260 #elif defined(__GNUG__)
261 // glibc prints pointers as %#x except for NULL pointers which are printed
263 CMP3("0xabcdef", "%p", (void*)0xABCDEF);
264 CMP3("(nil)", "%p", (void*)NULL
);
268 void VsnprintfTestCase::N()
272 wxSnprintf(buf
, MAX_TEST_LEN
, wxT("%d %s%n\n"), 3, wxT("bears"), &nchar
);
273 CPPUNIT_ASSERT_EQUAL( 7, nchar
);
276 void VsnprintfTestCase::E()
278 // NB: there are no standards about the minimum exponent width
279 // (and the width of the %e conversion specifier refers to the
280 // mantissa, not to the exponent).
281 // Since newer MSVC versions use 3 digits as minimum exponent
282 // width while GNU libc uses 2 digits as minimum width, here we
283 // workaround this problem using for the exponent values with at
284 // least three digits.
286 // printf("%e",2.342E+02);
287 // -> under MSVC7.1 prints: 2.342000e+002
288 // -> under GNU libc 2.4 prints: 2.342000e+02
289 CMP3("2.342000e+112", "%e",2.342E+112);
290 CMP3("-2.3420e-112", "%10.4e",-2.342E-112);
291 CMP3("-2.3420e-112", "%11.4e",-2.342E-112);
292 CMP3(" -2.3420e-112", "%15.4e",-2.342E-112);
294 CMP3("-0.02342", "%G",-2.342E-02);
295 CMP3("3.1415E-116", "%G",3.1415e-116);
296 CMP3("0003.141500e+103", "%016e", 3141.5e100
);
297 CMP3(" 3.141500e+103", "%16e", 3141.5e100
);
298 CMP3("3.141500e+103 ", "%-16e", 3141.5e100
);
299 CMP3("3.142e+103", "%010.3e", 3141.5e100
);
302 void VsnprintfTestCase::F()
304 CMP3("3.300000", "%5f", 3.3);
305 CMP3("3.000000", "%5f", 3.0);
306 CMP3("0.000100", "%5f", .999999E-4);
307 CMP3("0.000990", "%5f", .99E-3);
308 CMP3("3333.000000", "%5f", 3333.0);
311 void VsnprintfTestCase::G()
313 // NOTE: the same about E() testcase applies here...
315 CMP3(" 3.3", "%5g", 3.3);
316 CMP3(" 3", "%5g", 3.0);
317 CMP3("9.99999e-115", "%5g", .999999E-114);
318 CMP3("0.00099", "%5g", .99E-3);
319 CMP3(" 3333", "%5g", 3333.0);
320 CMP3(" 0.01", "%5g", 0.01);
322 CMP3(" 3", "%5.g", 3.3);
323 CMP3(" 3", "%5.g", 3.0);
324 CMP3("1e-114", "%5.g", .999999E-114);
325 CMP3("0.0001", "%5.g", 1.0E-4);
326 CMP3("0.001", "%5.g", .99E-3);
327 CMP3("3e+103", "%5.g", 3333.0E100
);
328 CMP3(" 0.01", "%5.g", 0.01);
330 CMP3(" 3.3", "%5.2g", 3.3);
331 CMP3(" 3", "%5.2g", 3.0);
332 CMP3("1e-114", "%5.2g", .999999E-114);
333 CMP3("0.00099", "%5.2g", .99E-3);
334 CMP3("3.3e+103", "%5.2g", 3333.0E100
);
335 CMP3(" 0.01", "%5.2g", 0.01);
338 void VsnprintfTestCase::S()
340 CMP3(" abc", "%5s", wxT("abc"));
341 CMP3(" a", "%5s", wxT("a"));
342 CMP3("abcdefghi", "%5s", wxT("abcdefghi"));
343 CMP3("abc ", "%-5s", wxT("abc"));
344 CMP3("abcdefghi", "%-5s", wxT("abcdefghi"));
346 CMP3("abcde", "%.5s", wxT("abcdefghi"));
348 // do the same tests but with Unicode characters:
351 // Unicode code points from U+03B1 to U+03B9 are the greek letters alpha-iota;
352 // UTF8 encoding of such code points is 0xCEB1 to 0xCEB9
354 #define ALPHA "\xCE\xB1"
356 #define ABC "\xCE\xB1\xCE\xB2\xCE\xB3"
358 #define ABCDE "\xCE\xB1\xCE\xB2\xCE\xB3\xCE\xB4\xCE\xB5"
359 // alpha+beta+gamma+delta+epsilon
360 #define ABCDEFGHI "\xCE\xB1\xCE\xB2\xCE\xB3\xCE\xB4\xCE\xB5\xCE\xB6\xCE\xB7\xCE\xB8\xCE\xB9"
361 // alpha+beta+gamma+delta+epsilon+zeta+eta+theta+iota
363 // the 'expected' and 'arg' parameters of this macro are supposed to be
365 #define CMP3_UTF8(expected, fmt, arg) \
366 CPPUNIT_ASSERT_EQUAL \
368 wxString::FromUTF8(expected).length(), \
369 wxSnprintf(buf, MAX_TEST_LEN, fmt, wxString::FromUTF8(arg)) \
371 CPPUNIT_ASSERT_EQUAL \
373 wxString::FromUTF8(expected), \
377 CMP3_UTF8(" " ABC
, "%5s", ABC
);
378 CMP3_UTF8(" " ALPHA
, "%5s", ALPHA
);
379 CMP3_UTF8(ABCDEFGHI
, "%5s", ABCDEFGHI
);
380 CMP3_UTF8(ABC
" ", "%-5s", ABC
);
381 CMP3_UTF8(ABCDEFGHI
, "%-5s", ABCDEFGHI
);
382 CMP3_UTF8(ABCDE
, "%.5s", ABCDEFGHI
);
383 #endif // wxUSE_UNICODE
385 // test a string which has a NULL character after "ab";
386 // obviously it should be handled exactly like just as "ab"
387 CMP3(" ab", "%5s", wxT("ab\0cdefghi"));
390 void VsnprintfTestCase::Asterisk()
392 CMP5(" 0.1", "%*.*f", 10, 1, 0.123);
393 CMP5(" 0.1230", "%*.*f", 10, 4, 0.123);
394 CMP5("0.1", "%*.*f", 3, 1, 0.123);
396 CMP4("%0.002", "%%%.*f", 3, 0.0023456789);
398 CMP4(" a", "%*c", 8, 'a');
399 CMP4(" four", "%*s", 8, "four");
400 CMP6(" four four", "%*s %*s", 8, "four", 6, "four");
403 void VsnprintfTestCase::Percent()
405 // some tests without any argument passed through ...
407 CMP2("%%%", "%%%%%%");
409 CMP3("% abc", "%%%5s", wxT("abc"));
410 CMP3("% abc%", "%%%5s%%", wxT("abc"));
412 // do not test odd number of '%' symbols as different implementations
413 // of snprintf() give different outputs as this situation is not considered
414 // by any standard (in fact, GCC will also warn you about a spurious % if
415 // you write %%% as argument of some *printf function !)
416 // Compare(wxT("%"), wxT("%%%"));
420 void VsnprintfTestCase::LongLong()
422 CMP3("123456789", "%lld", (wxLongLong_t
)123456789);
423 CMP3("-123456789", "%lld", (wxLongLong_t
)-123456789);
425 CMP3("123456789", "%llu", (wxULongLong_t
)123456789);
428 CMP3("123456789", "%I64d", (wxLongLong_t
)123456789);
429 CMP3("123456789abcdef", "%I64x", wxLL(0x123456789abcdef));
434 void VsnprintfTestCase::WrongFormatStrings()
436 // test how wxVsnprintf() behaves with wrong format string:
439 // NB: the next 2 tests currently return an error but it would be nice
440 // if they didn't (see ticket #9367)
442 // two positionals with the same index:
443 r
= wxSnprintf(buf
, MAX_TEST_LEN
, wxT("%1$s %1$s"), "hello");
444 CPPUNIT_ASSERT(r
!= -1);
446 // three positionals with the same index mixed with other pos args:
447 r
= wxSnprintf(buf
, MAX_TEST_LEN
, wxT("%4$d %2$f %1$s %2$s %3$d"), "hello", "world", 3, 4);
448 CPPUNIT_ASSERT(r
!= -1);
451 // a missing positional arg should result in an assert
452 WX_ASSERT_FAILS_WITH_ASSERT(
453 wxSnprintf(buf
, MAX_TEST_LEN
, wxT("%1$d %3$d"), 1, 2, 3) );
455 // positional and non-positionals in the same format string:
456 r
= wxSnprintf(buf
, MAX_TEST_LEN
, wxT("%1$d %d %3$d"), 1, 2, 3);
457 CPPUNIT_ASSERT_EQUAL(-1, r
);
460 // BigToSmallBuffer() test case helper:
462 void VsnprintfTestCase::DoBigToSmallBuffer(T
*buffer
, int size
)
464 // Remember that wx*printf could be mapped either to system
465 // implementation or to wx implementation.
466 // In the first case, when the output buffer is too small, the returned
467 // value can be the number of characters required for the output buffer
468 // (conforming to ISO C99; implemented in e.g. GNU libc >= 2.1), or
469 // just a negative number, usually -1; (this is how e.g. MSVC's
470 // *printf() behaves). Luckily, in all implementations, when the
471 // output buffer is too small, it's nonetheless filled up to its max size.
473 // Note that in the second case (i.e. when we're using our own implementation),
474 // wxVsnprintf() will return the number of characters written in the standard
476 // -1 if there was an error in the format string
477 // maxSize+1 if the output buffer is too small
480 errStr
<< "The size of the buffer was " << size
;
481 std::string
errMsg(errStr
.mb_str());
483 // test without positionals
484 CMPTOSIZE(buffer
, size
, errMsg
,
485 "123456789012 - test - 123 -4.567",
486 "%i%li - test - %d %.3f",
487 123, (long int)456789012, 123, -4.567);
489 #if wxUSE_PRINTF_POS_PARAMS
490 // test with positional
491 CMPTOSIZE(buffer
, size
, errMsg
,
492 "-4.567 123 - test - 456789012 123",
493 "%4$.3f %1$i - test - %2$li %3$d",
494 123, (long int)456789012, 123, -4.567);
497 // test unicode/ansi conversion specifiers
499 // NB: we use wxUnsafeSnprintf() as %hs and %hc are invalid in printf
500 // format and gcc would warn about this otherwise
502 r
= wxUnsafeSnprintf(buffer
, size
,
503 wxT("unicode string/char: %ls/%lc -- ansi string/char: %hs/%hc"),
504 L
"unicode", L
'U', "ansi", 'A');
506 wxString(wxT("unicode string/char: unicode/U -- ansi string/char: ansi/A")).Left(size
- 1);
508 CPPUNIT_ASSERT( r
!= -1 );
509 CPPUNIT_ASSERT_EQUAL(
515 void VsnprintfTestCase::BigToSmallBuffer()
517 // VC6 can't compile this code
518 #if !defined(__VISUALC__) || (__VISUALC__ >= 1310)
520 wchar_t bufw
[1024], bufw2
[16], bufw3
[4], bufw4
;
521 DoBigToSmallBuffer(bufw
, 1024);
522 DoBigToSmallBuffer(bufw2
, 16);
523 DoBigToSmallBuffer(bufw3
, 4);
524 DoBigToSmallBuffer(&bufw4
, 1);
525 #endif // wxUSE_UNICODE
527 char bufa
[1024], bufa2
[16], bufa3
[4], bufa4
;
528 DoBigToSmallBuffer(bufa
, 1024);
529 DoBigToSmallBuffer(bufa2
, 16);
530 DoBigToSmallBuffer(bufa3
, 4);
531 DoBigToSmallBuffer(&bufa4
, 1);
535 // Miscellaneous() test case helper:
536 void VsnprintfTestCase::DoMisc(
538 const wxString
& expectedString
,
540 const wxChar
*format
, ...)
542 const size_t BUFSIZE
= MAX_TEST_LEN
- 1;
544 static int count
= 0;
546 wxASSERT(max
<= BUFSIZE
);
548 for (i
= 0; i
< BUFSIZE
; i
++)
553 va_start(ap
, format
);
555 int n
= wxVsnprintf(buf
, max
, format
, ap
);
559 // Prepare messages so that it is possible to see from the error which
561 wxString errStr
, overflowStr
;
562 errStr
<< wxT("No.: ") << ++count
<< wxT(", expected: ") << expectedLen
563 << wxT(" '") << expectedString
<< wxT("', result: ");
564 overflowStr
<< errStr
<< wxT("buffer overflow");
565 errStr
<< n
<< wxT(" '") << buf
<< wxT("'");
567 // turn them into std::strings
568 std::string
errMsg(errStr
.mb_str());
569 std::string
overflowMsg(overflowStr
.mb_str());
571 CPPUNIT_ASSERT_MESSAGE(errMsg
,
572 (expectedLen
== -1 && size_t(n
) >= max
) || expectedLen
== n
);
574 CPPUNIT_ASSERT_MESSAGE(errMsg
, expectedString
== buf
);
576 for (i
= max
; i
< BUFSIZE
; i
++)
577 CPPUNIT_ASSERT_MESSAGE(overflowMsg
, buf
[i
] == '*');
580 void VsnprintfTestCase::Miscellaneous()
582 // expectedLen, expectedString, max, format, ...
583 DoMisc(5, wxT("-1234"), 8, wxT("%d"), -1234);
584 DoMisc(7, wxT("1234567"), 8, wxT("%d"), 1234567);
585 DoMisc(-1, wxT("1234567"), 8, wxT("%d"), 12345678);
586 DoMisc(-1, wxT("-123456"), 8, wxT("%d"), -1234567890);
588 DoMisc(6, wxT("123456"), 8, wxT("123456"));
589 DoMisc(7, wxT("1234567"), 8, wxT("1234567"));
590 DoMisc(-1, wxT("1234567"), 8, wxT("12345678"));
592 DoMisc(6, wxT("123450"), 8, wxT("12345%d"), 0);
593 DoMisc(7, wxT("1234560"), 8, wxT("123456%d"), 0);
594 DoMisc(-1, wxT("1234567"), 8, wxT("1234567%d"), 0);
595 DoMisc(-1, wxT("1234567"), 8, wxT("12345678%d"), 0);
597 DoMisc(6, wxT("12%45%"), 8, wxT("12%%45%%"));
598 DoMisc(7, wxT("12%45%7"), 8, wxT("12%%45%%7"));
599 DoMisc(-1, wxT("12%45%7"), 8, wxT("12%%45%%78"));
601 DoMisc(5, wxT("%%%%%"), 6, wxT("%%%%%%%%%%"));
602 DoMisc(6, wxT("%%%%12"), 7, wxT("%%%%%%%%%d"), 12);
606 /* (C) Copyright C E Chew
608 * Feel free to copy, use and distribute this software provided:
610 * 1. you do not pretend that you wrote it
611 * 2. you leave this copyright notice intact.
614 void VsnprintfTestCase::GlibcMisc1()
616 CMP3(" ", "%5.s", "xyz");
617 CMP3(" 33", "%5.f", 33.3);
618 #ifdef wxUSING_VC_CRT_IO
619 // see the previous notes about the minimum width of mantissa:
620 CMP3(" 3e+008", "%8.e", 33.3e7
);
621 CMP3(" 3E+008", "%8.E", 33.3e7
);
622 CMP3("3e+001", "%.g", 33.3);
623 CMP3("3E+001", "%.G", 33.3);
625 CMP3(" 3e+08", "%8.e", 33.3e7
);
626 CMP3(" 3E+08", "%8.E", 33.3e7
);
627 CMP3("3e+01", "%.g", 33.3);
628 CMP3("3E+01", "%.G", 33.3);
632 void VsnprintfTestCase::GlibcMisc2()
635 wxString test_format
;
638 CMP4("3", "%.*g", prec
, 3.3);
641 CMP4("3", "%.*G", prec
, 3.3);
644 CMP4(" 3", "%7.*G", prec
, 3.33);
647 CMP4(" 041", "%04.*o", prec
, 33);
650 CMP4(" 0000033", "%09.*u", prec
, 33);
653 CMP4(" 021", "%04.*x", prec
, 33);
656 CMP4(" 021", "%04.*X", prec
, 33);
659 #endif // wxUSE_WXVSNPRINTF