pdh: Skip tests when running on non-english locale.
This commit is contained in:
parent
cf8b16bc9e
commit
290869b03d
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue