mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 14:43:02 +00:00
[ADVPACK_WINETEST] Sync with Wine Staging 1.7.55. CORE-10536
svn path=/trunk/; revision=69920
This commit is contained in:
parent
316b248004
commit
f2ae834b5f
1 changed files with 4 additions and 0 deletions
|
@ -197,6 +197,7 @@ static void test_LaunchINFSection(void)
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
char cmdline[MAX_PATH];
|
char cmdline[MAX_PATH];
|
||||||
static char file[] = "test.inf,DefaultInstall,4,0";
|
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.
|
/* 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.
|
||||||
|
@ -227,6 +228,9 @@ static void test_LaunchINFSection(void)
|
||||||
hr = pLaunchINFSection(NULL, NULL, file, 0);
|
hr = pLaunchINFSection(NULL, NULL, file, 0);
|
||||||
ok(hr == 0, "Expected 0, got %d\n", hr);
|
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");
|
DeleteFileA("test.inf");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue