comdlg32/tests: Use win_skip() instead when appropriate.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5ce743d53b
commit
3dc3d4998e
|
@ -441,7 +441,7 @@ static BOOL test_instantiation(void)
|
||||||
&IID_IFileSaveDialog, (void**)&pfsd);
|
&IID_IFileSaveDialog, (void**)&pfsd);
|
||||||
if(FAILED(hr))
|
if(FAILED(hr))
|
||||||
{
|
{
|
||||||
skip("Could not instantiate the FileSaveDialog.\n");
|
win_skip("Could not instantiate the FileSaveDialog.\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
ok(hr == S_OK, "got 0x%08x.\n", hr);
|
ok(hr == S_OK, "got 0x%08x.\n", hr);
|
||||||
|
|
|
@ -375,7 +375,7 @@ static void test_PrintDlgExW(void)
|
||||||
|
|
||||||
/* PrintDlgEx not present before w2k */
|
/* PrintDlgEx not present before w2k */
|
||||||
if (!pPrintDlgExW) {
|
if (!pPrintDlgExW) {
|
||||||
skip("PrintDlgExW not available\n");
|
win_skip("PrintDlgExW not available\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue