mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[KERNEL32_TEST]
- Move ROS-only tests into apitest svn path=/trunk/; revision=61303
This commit is contained in:
parent
ecced5a6cb
commit
b6ffc426d7
6 changed files with 6 additions and 7 deletions
|
@ -1,9 +1,11 @@
|
||||||
|
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
|
dosdev.c
|
||||||
FindFiles.c
|
FindFiles.c
|
||||||
GetCurrentDirectory.c
|
GetCurrentDirectory.c
|
||||||
GetDriveType.c
|
GetDriveType.c
|
||||||
GetModuleFileName.c
|
GetModuleFileName.c
|
||||||
|
interlck.c
|
||||||
lstrcpynW.c
|
lstrcpynW.c
|
||||||
MultiByteToWideChar.c
|
MultiByteToWideChar.c
|
||||||
SetCurrentDirectory.c
|
SetCurrentDirectory.c
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#undef __ROS_LONG64__
|
|
||||||
#include "wine/test.h"
|
#include "wine/test.h"
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
|
@ -3,10 +3,12 @@
|
||||||
#define STANDALONE
|
#define STANDALONE
|
||||||
#include <apitest.h>
|
#include <apitest.h>
|
||||||
|
|
||||||
|
extern void func_dosdev(void);
|
||||||
extern void func_FindFiles(void);
|
extern void func_FindFiles(void);
|
||||||
extern void func_GetCurrentDirectory(void);
|
extern void func_GetCurrentDirectory(void);
|
||||||
extern void func_GetDriveType(void);
|
extern void func_GetDriveType(void);
|
||||||
extern void func_GetModuleFileName(void);
|
extern void func_GetModuleFileName(void);
|
||||||
|
extern void func_interlck(void);
|
||||||
extern void func_lstrcpynW(void);
|
extern void func_lstrcpynW(void);
|
||||||
extern void func_MultiByteToWideChar(void);
|
extern void func_MultiByteToWideChar(void);
|
||||||
extern void func_SetCurrentDirectory(void);
|
extern void func_SetCurrentDirectory(void);
|
||||||
|
@ -14,15 +16,16 @@ extern void func_SetUnhandledExceptionFilter(void);
|
||||||
|
|
||||||
const struct test winetest_testlist[] =
|
const struct test winetest_testlist[] =
|
||||||
{
|
{
|
||||||
|
{ "dosdev", func_dosdev },
|
||||||
{ "FindFiles", func_FindFiles },
|
{ "FindFiles", func_FindFiles },
|
||||||
{ "GetCurrentDirectory", func_GetCurrentDirectory },
|
{ "GetCurrentDirectory", func_GetCurrentDirectory },
|
||||||
{ "GetDriveType", func_GetDriveType },
|
{ "GetDriveType", func_GetDriveType },
|
||||||
{ "GetModuleFileName", func_GetModuleFileName },
|
{ "GetModuleFileName", func_GetModuleFileName },
|
||||||
|
{ "interlck", func_interlck },
|
||||||
{ "lstrcpynW", func_lstrcpynW },
|
{ "lstrcpynW", func_lstrcpynW },
|
||||||
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
||||||
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
||||||
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
|
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
|
||||||
|
|
||||||
{ 0, 0 }
|
{ 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,6 @@ list(APPEND SOURCE
|
||||||
format_msg.c
|
format_msg.c
|
||||||
#generated.c
|
#generated.c
|
||||||
heap.c
|
heap.c
|
||||||
interlck.c
|
|
||||||
loader.c
|
loader.c
|
||||||
locale.c
|
locale.c
|
||||||
mailslot.c
|
mailslot.c
|
||||||
|
@ -39,7 +38,6 @@ list(APPEND SOURCE
|
||||||
version.c
|
version.c
|
||||||
virtual.c
|
virtual.c
|
||||||
volume.c
|
volume.c
|
||||||
dosdev.c
|
|
||||||
testlist.c)
|
testlist.c)
|
||||||
|
|
||||||
add_executable(kernel32_winetest
|
add_executable(kernel32_winetest
|
||||||
|
|
|
@ -80,8 +80,5 @@ const struct test winetest_testlist[] =
|
||||||
{ "version", func_version },
|
{ "version", func_version },
|
||||||
{ "virtual", func_virtual },
|
{ "virtual", func_virtual },
|
||||||
{ "volume", func_volume },
|
{ "volume", func_volume },
|
||||||
/* ReactOS */
|
|
||||||
{ "dosdev", func_dosdev },
|
|
||||||
{ "interlck", func_interlck },
|
|
||||||
{ 0, 0 }
|
{ 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue