advpack/tests: Add test for LaunchINFSectionEx with quoted filename.

This commit is contained in:
Vincent Povirk 2013-07-22 14:46:12 -05:00 committed by Alexandre Julliard
parent 3fea3a5b1a
commit 17f6609702
1 changed files with 7 additions and 0 deletions

View File

@ -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.
*/