userenv/tests: Remove win9x hacks.

This commit is contained in:
Austin English 2011-02-24 15:28:13 -08:00 committed by Alexandre Julliard
parent 21d6fc9643
commit 04b5763923
1 changed files with 3 additions and 6 deletions

View File

@ -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);