Paul Vriens : winspool.drv/tests: Skip EnumPrintersW tests when not implemented.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jan 2 06:45:49 CST 2007


Module: wine
Branch: master
Commit: f5ecb721274f58e8341a4edead9602abbe716893
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f5ecb721274f58e8341a4edead9602abbe716893

Author: Paul Vriens <paul.vriens.wine at gmail.com>
Date:   Sat Dec 30 18:13:08 2006 +0100

winspool.drv/tests: Skip EnumPrintersW tests when not implemented.

---

 dlls/winspool.drv/tests/info.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/dlls/winspool.drv/tests/info.c b/dlls/winspool.drv/tests/info.c
index c7f6634..3bf59aa 100644
--- a/dlls/winspool.drv/tests/info.c
+++ b/dlls/winspool.drv/tests/info.c
@@ -1670,6 +1670,13 @@ static void test_EnumPrinters(void)
     SetLastError(0xdeadbeef);
     neededW = -1;
     ret = EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 2, NULL, 0, &neededW, &num);
+    /* EnumPrintersW is not supported on all platforms */
+    if (!ret && (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED))
+    {
+        trace("EnumPrintersW is not implemented, skipping some tests\n");
+        return;
+    }
+
     if (!ret)
     {
         /* We have 1 or more printers */




More information about the wine-cvs mailing list