advpack/tests: Add test for LaunchINFSectionEx with quoted filename.
This commit is contained in:
parent
3fea3a5b1a
commit
17f6609702
|
@ -237,6 +237,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);
|
||||
todo_wine 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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue