a6b116559c60e16fa48d09e0d9ffb326fac8b7e0
[reactos.git] / rostests / apitests / crt / _vsnprintf.c
1 /*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL - See COPYING in the top level directory
4 * PURPOSE: Test for _vsnprintf
5 */
6
7 #define WIN32_NO_STATUS
8 #include <stdio.h>
9 #include <wine/test.h>
10 #include <tchar.h>
11 #include <pseh/pseh2.h>
12 #include <ndk/mmfuncs.h>
13 #include <ndk/rtlfuncs.h>
14
15 #define StartSeh() ExceptionStatus = STATUS_SUCCESS; _SEH2_TRY {
16 #define EndSeh(ExpectedStatus) } _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) { ExceptionStatus = _SEH2_GetExceptionCode(); } _SEH2_END; ok(ExceptionStatus == ExpectedStatus, "Exception %lx, expected %lx\n", ExceptionStatus, ExpectedStatus)
17
18 void call_varargs(char* buf, size_t buf_size, int expected_ret, LPCSTR formatString, ...)
19 {
20 va_list args;
21 int ret;
22 /* Test the basic functionality */
23 va_start(args, formatString);
24 ret = _vsnprintf(buf, 255, formatString, args);
25 ok(expected_ret == ret, "Test failed: expected %i, got %i.\n", expected_ret, ret);
26 }
27
28 START_TEST(_vsnprintf)
29 {
30 char buffer[255];
31 NTSTATUS ExceptionStatus;
32 /* Test basic functionality */
33 call_varargs(buffer, 255, 12, "%s world!", "hello");
34 /* This is how WINE implements _vcsprintf, and they are obviously wrong */
35 StartSeh()
36 call_varargs(NULL, INT_MAX, -1, "%s it really work?", "does");
37 #if defined(TEST_CRTDLL) || defined(TEST_USER32)
38 EndSeh(STATUS_ACCESS_VIOLATION);
39 #else
40 EndSeh(STATUS_SUCCESS);
41 #endif
42 /* This one is no better */
43 StartSeh()
44 call_varargs(NULL, 0, -1, "%s it really work?", "does");
45 #if defined(TEST_CRTDLL) || defined(TEST_USER32)
46 EndSeh(STATUS_ACCESS_VIOLATION);
47 #else
48 EndSeh(STATUS_SUCCESS);
49 #endif
50 }