Austin English : advapi32/tests: Remove Win9x hacks.

Alexandre Julliard julliard at winehq.org
Mon Feb 28 11:02:07 CST 2011


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

Author: Austin English <austinenglish at gmail.com>
Date:   Fri Feb 25 14:27:58 2011 -0800

advapi32/tests: Remove Win9x hacks.

---

 dlls/advapi32/tests/security.c |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/dlls/advapi32/tests/security.c b/dlls/advapi32/tests/security.c
index bfe9783..4ba244f 100644
--- a/dlls/advapi32/tests/security.c
+++ b/dlls/advapi32/tests/security.c
@@ -1881,12 +1881,6 @@ static void test_LookupAccountName(void)
     user_size = UNLEN + 1;
     SetLastError(0xdeadbeef);
     ret = GetUserNameA(user_name, &user_size);
-    if (!ret && (GetLastError() == ERROR_NOT_LOGGED_ON))
-    {
-        /* Probably on win9x where the user used 'Cancel' instead of properly logging in */
-        skip("Cannot get the user name (win9x and not logged in properly)\n");
-        return;
-    }
     ok(ret, "Failed to get user name : %d\n", GetLastError());
 
     /* get sizes */




More information about the wine-cvs mailing list