Commit 642e0917 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

msvcrt/tests: Add setlocale test.

parent 67cae2de
......@@ -614,6 +614,9 @@ static void test_setlocale(void)
ret = setlocale(LC_ALL, "English_United States.UTF8");
ok(ret == NULL, "ret != NULL\n");
ret = setlocale(LC_ALL, "en-US");
ok(ret == NULL || broken (ret != NULL), "ret != NULL\n"); /* XP & 2003 */
}
static void test_crtGetStringTypeW(void)
......
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