userenv/tests: remove win9x hacks

Austin English austinenglish at gmail.com
Thu Feb 24 17:28:13 CST 2011


https://testbot.winehq.org/JobDetails.pl?Key=9443

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/userenv/tests/userenv.c b/dlls/userenv/tests/userenv.c
index 4fa257b..446870f 100644
--- a/dlls/userenv/tests/userenv.c
+++ b/dlls/userenv/tests/userenv.c
@@ -218,15 +218,12 @@ static void test_get_profiles_dir(void)
     char *profiles_dir, *buf, small_buf[1];
 
     l = RegOpenKeyExA(HKEY_LOCAL_MACHINE, ProfileListA, 0, KEY_READ, &key);
-    if (l)
-    {
-        win_skip("No ProfileList key (Win9x), skipping tests\n");
-        return;
-    }
+    ok(!l, "RegOpenKeyExA failed: %d\n", GetLastError());
+
     l = RegQueryValueExA(key, ProfilesDirectory, NULL, NULL, NULL, &cch);
     if (l)
     {
-        win_skip("No ProfilesDirectory value, skipping tests\n");
+        win_skip("No ProfilesDirectory value (NT4), skipping tests\n");
         return;
     }
     buf = HeapAlloc(GetProcessHeap(), 0, cch);


More information about the wine-patches mailing list