Author: akhaldi Date: Tue Nov 17 12:46:31 2015 New Revision: 69920
URL: http://svn.reactos.org/svn/reactos?rev=69920&view=rev Log: [ADVPACK_WINETEST] Sync with Wine Staging 1.7.55. CORE-10536
Modified: trunk/rostests/winetests/advpack/install.c
Modified: trunk/rostests/winetests/advpack/install.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/advpack/install.... ============================================================================== --- trunk/rostests/winetests/advpack/install.c [iso-8859-1] (original) +++ trunk/rostests/winetests/advpack/install.c [iso-8859-1] Tue Nov 17 12:46:31 2015 @@ -197,6 +197,7 @@ HRESULT hr; char cmdline[MAX_PATH]; static char file[] = "test.inf,DefaultInstall,4,0"; + static char file2[] = "test.inf,,1,0";
/* The 'No UI' flag seems to have no effect whatsoever on Windows. * So only do this test in interactive mode. @@ -225,6 +226,9 @@
/* try just the INF filename */ hr = pLaunchINFSection(NULL, NULL, file, 0); + ok(hr == 0, "Expected 0, got %d\n", hr); + + hr = pLaunchINFSection(NULL, NULL, file2, 0); ok(hr == 0, "Expected 0, got %d\n", hr);
DeleteFileA("test.inf");