Commit 9c1d687a authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Remove setlocale test with empty locale string.

parent 3b96069e
......@@ -49,9 +49,6 @@ static void test_setlocale(void)
ret = setlocale(20, "C");
ok(ret == NULL, "ret = %s\n", ret);
ret = setlocale(LC_ALL, "");
ok(ret != NULL, "ret == NULL\n");
ret = setlocale(LC_ALL, "C");
ok(!strcmp(ret, "C"), "ret = %s\n", ret);
......
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