and of course also rename the test itself...

svn path=/trunk/; revision=73186
This commit is contained in:
Mark Jansen 2016-11-09 23:23:50 +00:00
parent cae3a4455e
commit f6c36fb82e
2 changed files with 3 additions and 3 deletions

View file

@ -84,7 +84,7 @@ TestShellExecuteEx(const WCHAR* Name, BOOL ExpectedResult)
}
}
START_TEST(shlexec)
START_TEST(ShellExecuteEx)
{
ok_ShellExecuteEx(L"iexplore", TRUE);
ok_ShellExecuteEx(L"iexplore.exe", TRUE);

View file

@ -7,8 +7,8 @@ extern void func_CMyComputer(void);
extern void func_CShellDesktop(void);
extern void func_CShellLink(void);
extern void func_menu(void);
extern void func_ShellExecuteEx(void);
extern void func_SHParseDisplayName(void);
extern void func_shlexec(void);
const struct test winetest_testlist[] =
{
@ -16,7 +16,7 @@ const struct test winetest_testlist[] =
{ "CShellDesktop", func_CShellDesktop },
{ "CShellLink", func_CShellLink },
{ "menu", func_menu },
{ "ShellExecuteEx", func_ShellExecuteEx },
{ "SHParseDisplayName", func_SHParseDisplayName },
{ "shlexec", func_shlexec },
{ 0, 0 }
};