[KERNEL32_TEST]

- Move ROS-only tests into apitest

svn path=/trunk/; revision=61303
This commit is contained in:
Thomas Faber 2013-12-19 21:39:09 +00:00
parent ecced5a6cb
commit b6ffc426d7
6 changed files with 6 additions and 7 deletions

View file

@ -1,9 +1,11 @@
list(APPEND SOURCE
dosdev.c
FindFiles.c
GetCurrentDirectory.c
GetDriveType.c
GetModuleFileName.c
interlck.c
lstrcpynW.c
MultiByteToWideChar.c
SetCurrentDirectory.c

View file

@ -20,7 +20,6 @@
#include <stdarg.h>
#undef __ROS_LONG64__
#include "wine/test.h"
#include "windef.h"
#include "winbase.h"

View file

@ -3,10 +3,12 @@
#define STANDALONE
#include <apitest.h>
extern void func_dosdev(void);
extern void func_FindFiles(void);
extern void func_GetCurrentDirectory(void);
extern void func_GetDriveType(void);
extern void func_GetModuleFileName(void);
extern void func_interlck(void);
extern void func_lstrcpynW(void);
extern void func_MultiByteToWideChar(void);
extern void func_SetCurrentDirectory(void);
@ -14,15 +16,16 @@ extern void func_SetUnhandledExceptionFilter(void);
const struct test winetest_testlist[] =
{
{ "dosdev", func_dosdev },
{ "FindFiles", func_FindFiles },
{ "GetCurrentDirectory", func_GetCurrentDirectory },
{ "GetDriveType", func_GetDriveType },
{ "GetModuleFileName", func_GetModuleFileName },
{ "interlck", func_interlck },
{ "lstrcpynW", func_lstrcpynW },
{ "MultiByteToWideChar", func_MultiByteToWideChar },
{ "SetCurrentDirectory", func_SetCurrentDirectory },
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
{ 0, 0 }
};

View file

@ -21,7 +21,6 @@ list(APPEND SOURCE
format_msg.c
#generated.c
heap.c
interlck.c
loader.c
locale.c
mailslot.c
@ -39,7 +38,6 @@ list(APPEND SOURCE
version.c
virtual.c
volume.c
dosdev.c
testlist.c)
add_executable(kernel32_winetest

View file

@ -80,8 +80,5 @@ const struct test winetest_testlist[] =
{ "version", func_version },
{ "virtual", func_virtual },
{ "volume", func_volume },
/* ReactOS */
{ "dosdev", func_dosdev },
{ "interlck", func_interlck },
{ 0, 0 }
};