Author: mjansen Date: Wed Nov 9 23:23:50 2016 New Revision: 73186
URL: http://svn.reactos.org/svn/reactos?rev=73186&view=rev Log: and of course also rename the test itself...
Modified: trunk/rostests/apitests/shell32/ShellExecuteEx.cpp trunk/rostests/apitests/shell32/testlist.c
Modified: trunk/rostests/apitests/shell32/ShellExecuteEx.cpp URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/shell32/ShellExec... ============================================================================== --- trunk/rostests/apitests/shell32/ShellExecuteEx.cpp [iso-8859-1] (original) +++ trunk/rostests/apitests/shell32/ShellExecuteEx.cpp [iso-8859-1] Wed Nov 9 23:23:50 2016 @@ -84,7 +84,7 @@ } }
-START_TEST(shlexec) +START_TEST(ShellExecuteEx) { ok_ShellExecuteEx(L"iexplore", TRUE); ok_ShellExecuteEx(L"iexplore.exe", TRUE);
Modified: trunk/rostests/apitests/shell32/testlist.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/shell32/testlist.... ============================================================================== --- trunk/rostests/apitests/shell32/testlist.c [iso-8859-1] (original) +++ trunk/rostests/apitests/shell32/testlist.c [iso-8859-1] Wed Nov 9 23:23:50 2016 @@ -7,8 +7,8 @@ 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 @@ { "CShellDesktop", func_CShellDesktop }, { "CShellLink", func_CShellLink }, { "menu", func_menu }, + { "ShellExecuteEx", func_ShellExecuteEx }, { "SHParseDisplayName", func_SHParseDisplayName }, - { "shlexec", func_shlexec }, { 0, 0 } };