[KERNEL32_APITEST]

- Add some tests for GetCurrentDirectory and SetCurrentDirectory

svn path=/trunk/; revision=56489
This commit is contained in:
Thomas Faber 2012-05-04 10:28:54 +00:00
parent 494445d381
commit 1cb2379b98
4 changed files with 334 additions and 1 deletions

View file

@ -5,11 +5,15 @@
#define STANDALONE
#include "wine/test.h"
extern void func_GetCurrentDirectory(void);
extern void func_GetDriveType(void);
extern void func_SetCurrentDirectory(void);
const struct test winetest_testlist[] =
{
{ "GetDriveType", func_GetDriveType },
{ "GetCurrentDirectory", func_GetCurrentDirectory },
{ "GetDriveType", func_GetDriveType },
{ "SetCurrentDirectory", func_SetCurrentDirectory },
{ 0, 0 }
};