Commit 290869b0 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

pdh: Skip tests when running on non-english locale.

parent cf8b16bc
...@@ -858,6 +858,11 @@ static void test_PdhCollectQueryDataEx(void) ...@@ -858,6 +858,11 @@ static void test_PdhCollectQueryDataEx(void)
START_TEST(pdh) START_TEST(pdh)
{ {
if (PRIMARYLANGID(LANGIDFROMLCID(GetThreadLocale())) != LANG_ENGLISH)
{
skip("non-english locale\n");
return;
}
init_function_ptrs(); init_function_ptrs();
test_PdhOpenQueryA(); test_PdhOpenQueryA();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment