[NTDLL_WINETEST] Skip RtlUniform tests on Windows 2003

RtlUniform is broken on Windows 2003
This commit is contained in:
Timo Kreuzer
2025-10-23 12:31:55 +03:00
parent c65eb17a53
commit 09393565da

View File

@@ -446,6 +446,14 @@ static void test_RtlUniform(void)
ULONG expected;
ULONG result;
#ifdef __REACTOS__
if (!is_reactos() && (_winver < _WIN32_WINNT_VISTA))
{
skip("Skipping tests for RtlUniform, because it's broken on Windows 2003\n");
return;
}
#endif // __REACTOS__
/*
* According to the documentation RtlUniform is using D.H. Lehmer's 1948
* algorithm. We assume a more generic version of this algorithm,