[2/2] secur32/tests: Fix GetUserNameEx() tests

Austin English austinenglish at gmail.com
Sat Apr 11 14:08:10 CDT 2009


On Sat, Apr 11, 2009 at 1:45 PM, Ge van Geldorp <ge at gse.nl> wrote:
> Update tests based on more Windows test runs
>
> Changelog:
>  secur32/tests: Fix GetUserNameEx() tests
>
> ---
>  dlls/secur32/tests/secur32.c |   42
> +++++++++++++++++++++---------------------
>  1 files changed, 21 insertions(+), 21 deletions(-)

@@ -242,15 +234,23 @@ START_TEST(secur32)

         if (pGetComputerObjectNameA)
             testGetComputerObjectNameA();
+        else
+            skip("GetComputerObjectNameA not exported by secur32.dll\n");

         if (pGetComputerObjectNameW)
             testGetComputerObjectNameW();
+        else
+            skip("GetComputerObjectNameW not exported by secur32.dll\n");

         if (pGetUserNameExA)
             testGetUserNameExA();
+        else
+            skip("GetUserNameExA not exported by secur32.dll\n");

         if (pGetUserNameExW)
             testGetUserNameExW();
+        else
+            skip("GetUserNameExW not exported by secur32.dll\n");

         test_InitSecurityInterface();

Shouldn't these be win_skip's?
-- 
-Austin



More information about the wine-devel mailing list