mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
4b95e17c61
Introduce a "apitest.h" header gathering special things for apitests (SEH macros, wine/test.h inclusion, and so on...). svn path=/trunk/; revision=60313
32 lines
935 B
C
32 lines
935 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for _vscprintf
|
|
*/
|
|
|
|
#include <apitest.h>
|
|
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include <errno.h>
|
|
|
|
static void call_varargs(int expected_ret, LPCWSTR formatString, ...)
|
|
{
|
|
va_list args;
|
|
int ret;
|
|
/* Test the basic functionality */
|
|
va_start(args, formatString);
|
|
ret = _vscwprintf(formatString, args);
|
|
ok(expected_ret == ret, "expected %i, got %i.\n", expected_ret, ret);
|
|
}
|
|
|
|
START_TEST(_vscwprintf)
|
|
{
|
|
/* Lesson of the day: don't mix wide and ansi char */
|
|
/* Lesson of the week: don't ignore the lesson of the day */
|
|
call_varargs(12, L"%hs world!", "hello");
|
|
call_varargs(12, L"%s world!", L"hello");
|
|
call_varargs(17, L"Jack ate %u pies", 100);
|
|
/* Do not test NULL argument. That is verified to SEGV on a */
|
|
/* release-build with VC10 and MS' msvcrt. */
|
|
}
|