[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) 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

View file

@ -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();

View file

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