Nikolay Sivov : comdlg32/tests: Use win_skip() instead when appropriate.

Alexandre Julliard julliard at winehq.org
Mon Oct 21 15:28:37 CDT 2019


Module: wine
Branch: master
Commit: 3dc3d4998e00dfca6a6af0bbacbeba65872bc817
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3dc3d4998e00dfca6a6af0bbacbeba65872bc817

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Sun Oct 20 23:44:05 2019 +0300

comdlg32/tests: Use win_skip() instead when appropriate.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/comdlg32/tests/itemdlg.c  | 2 +-
 dlls/comdlg32/tests/printdlg.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comdlg32/tests/itemdlg.c b/dlls/comdlg32/tests/itemdlg.c
index 787c4e48e8..6ee0d5fc3d 100644
--- a/dlls/comdlg32/tests/itemdlg.c
+++ b/dlls/comdlg32/tests/itemdlg.c
@@ -441,7 +441,7 @@ static BOOL test_instantiation(void)
                           &IID_IFileSaveDialog, (void**)&pfsd);
     if(FAILED(hr))
     {
-        skip("Could not instantiate the FileSaveDialog.\n");
+        win_skip("Could not instantiate the FileSaveDialog.\n");
         return FALSE;
     }
     ok(hr == S_OK, "got 0x%08x.\n", hr);
diff --git a/dlls/comdlg32/tests/printdlg.c b/dlls/comdlg32/tests/printdlg.c
index 4c6a47355c..0376872e67 100644
--- a/dlls/comdlg32/tests/printdlg.c
+++ b/dlls/comdlg32/tests/printdlg.c
@@ -375,7 +375,7 @@ static void test_PrintDlgExW(void)
 
     /* PrintDlgEx not present before w2k */
     if (!pPrintDlgExW) {
-        skip("PrintDlgExW not available\n");
+        win_skip("PrintDlgExW not available\n");
         return;
     }
 




More information about the wine-cvs mailing list