[ADVPACK_WINETEST]

* Sync with Wine 1.7.1.

svn path=/trunk/; revision=60026
This commit is contained in:
Amine Khaldi 2013-09-11 00:08:28 +00:00
parent 8516d91fba
commit f2664a3227

View file

@ -244,6 +244,13 @@ static void test_LaunchINFSectionEx(void)
hr = pLaunchINFSectionEx(NULL, NULL, cmdline, 0);
ok(hr == 0, "Expected 0, got %d\n", hr);
/* try quoting the parameters */
lstrcpy(cmdline, "\"");
lstrcat(cmdline, CURR_DIR);
lstrcat(cmdline, "\\test.inf\",\"DefaultInstall\",\"c:,imacab.cab\",\"4\"");
hr = pLaunchINFSectionEx(NULL, NULL, cmdline, 0);
ok(hr == 0, "Expected 0, got %d\n", hr);
/* The 'No UI' flag seems to have no effect whatsoever on Windows.
* So only do this test in interactive mode.
*/