mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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)
|
||||
|
||||
list(APPEND SOURCE
|
||||
Console.c
|
||||
ConsoleCP.c
|
||||
CreateProcess.c
|
||||
DefaultActCtx.c
|
||||
DeviceIoControl.c
|
||||
|
|
|
@ -446,7 +446,7 @@ static void test_cp932(HANDLE hConOut)
|
|||
SetConsoleOutputCP(oldcp);
|
||||
}
|
||||
|
||||
START_TEST(Console)
|
||||
START_TEST(ConsoleCP)
|
||||
{
|
||||
HANDLE hConIn, hConOut;
|
||||
FreeConsole();
|
|
@ -3,7 +3,7 @@
|
|||
#define STANDALONE
|
||||
#include <apitest.h>
|
||||
|
||||
extern void func_Console(void);
|
||||
extern void func_ConsoleCP(void);
|
||||
extern void func_CreateProcess(void);
|
||||
extern void func_DefaultActCtx(void);
|
||||
extern void func_DeviceIoControl(void);
|
||||
|
@ -36,7 +36,7 @@ extern void func_WideCharToMultiByte(void);
|
|||
|
||||
const struct test winetest_testlist[] =
|
||||
{
|
||||
{ "ConsoleCP", func_Console },
|
||||
{ "ConsoleCP", func_ConsoleCP },
|
||||
{ "CreateProcess", func_CreateProcess },
|
||||
{ "DefaultActCtx", func_DefaultActCtx },
|
||||
{ "DeviceIoControl", func_DeviceIoControl },
|
||||
|
|
Loading…
Reference in a new issue