mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[ADVPACK_WINETEST]
* Sync with Wine 1.7.1. svn path=/trunk/; revision=60026
This commit is contained in:
parent
8516d91fba
commit
f2664a3227
1 changed files with 7 additions and 0 deletions
|
@ -244,6 +244,13 @@ static void test_LaunchINFSectionEx(void)
|
||||||
hr = pLaunchINFSectionEx(NULL, NULL, cmdline, 0);
|
hr = pLaunchINFSectionEx(NULL, NULL, cmdline, 0);
|
||||||
ok(hr == 0, "Expected 0, got %d\n", hr);
|
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.
|
/* The 'No UI' flag seems to have no effect whatsoever on Windows.
|
||||||
* So only do this test in interactive mode.
|
* So only do this test in interactive mode.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue