[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:
Hermès Bélusca-Maïto 2019-04-28 22:47:14 +02:00
parent 2c11c41115
commit f21f750467
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -446,7 +446,7 @@ static void test_cp932(HANDLE hConOut)
SetConsoleOutputCP(oldcp);
}
START_TEST(Console)
START_TEST(ConsoleCP)
{
HANDLE hConIn, hConOut;
FreeConsole();

View file

@ -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 },