mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[KERNEL32_APITEST] Rename the 'Console.c' file into 'ConsoleCP.c' and its test-function as well, in order to reflect the actual name of the corresponding test.
This commit is contained in:
parent
2c11c41115
commit
f21f750467
3 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ add_subdirectory(redirptest)
|
||||||
add_message_headers(ANSI FormatMessage.mc)
|
add_message_headers(ANSI FormatMessage.mc)
|
||||||
|
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
Console.c
|
ConsoleCP.c
|
||||||
CreateProcess.c
|
CreateProcess.c
|
||||||
DefaultActCtx.c
|
DefaultActCtx.c
|
||||||
DeviceIoControl.c
|
DeviceIoControl.c
|
||||||
|
|
|
@ -446,7 +446,7 @@ static void test_cp932(HANDLE hConOut)
|
||||||
SetConsoleOutputCP(oldcp);
|
SetConsoleOutputCP(oldcp);
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST(Console)
|
START_TEST(ConsoleCP)
|
||||||
{
|
{
|
||||||
HANDLE hConIn, hConOut;
|
HANDLE hConIn, hConOut;
|
||||||
FreeConsole();
|
FreeConsole();
|
|
@ -3,7 +3,7 @@
|
||||||
#define STANDALONE
|
#define STANDALONE
|
||||||
#include <apitest.h>
|
#include <apitest.h>
|
||||||
|
|
||||||
extern void func_Console(void);
|
extern void func_ConsoleCP(void);
|
||||||
extern void func_CreateProcess(void);
|
extern void func_CreateProcess(void);
|
||||||
extern void func_DefaultActCtx(void);
|
extern void func_DefaultActCtx(void);
|
||||||
extern void func_DeviceIoControl(void);
|
extern void func_DeviceIoControl(void);
|
||||||
|
@ -36,7 +36,7 @@ extern void func_WideCharToMultiByte(void);
|
||||||
|
|
||||||
const struct test winetest_testlist[] =
|
const struct test winetest_testlist[] =
|
||||||
{
|
{
|
||||||
{ "ConsoleCP", func_Console },
|
{ "ConsoleCP", func_ConsoleCP },
|
||||||
{ "CreateProcess", func_CreateProcess },
|
{ "CreateProcess", func_CreateProcess },
|
||||||
{ "DefaultActCtx", func_DefaultActCtx },
|
{ "DefaultActCtx", func_DefaultActCtx },
|
||||||
{ "DeviceIoControl", func_DeviceIoControl },
|
{ "DeviceIoControl", func_DeviceIoControl },
|
||||||
|
|
Loading…
Reference in a new issue