From: Mark Jansen Date: Wed, 9 Nov 2016 23:23:50 +0000 (+0000) Subject: and of course also rename the test itself... X-Git-Tag: ReactOS-0.4.4-FOSDEM2017~348 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=f6c36fb82e527e93ce8b3fef450f947dcfcf6414 and of course also rename the test itself... svn path=/trunk/; revision=73186 --- diff --git a/rostests/apitests/shell32/ShellExecuteEx.cpp b/rostests/apitests/shell32/ShellExecuteEx.cpp index e479545c6a8..aa7bbc72ae2 100644 --- a/rostests/apitests/shell32/ShellExecuteEx.cpp +++ b/rostests/apitests/shell32/ShellExecuteEx.cpp @@ -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); diff --git a/rostests/apitests/shell32/testlist.c b/rostests/apitests/shell32/testlist.c index 1d4f42c98bd..ff4999e04f9 100644 --- a/rostests/apitests/shell32/testlist.c +++ b/rostests/apitests/shell32/testlist.c @@ -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 } };