Skip to content

Commit

Permalink
msvcrt: Remove setlocale test with empty locale string.
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrCW authored and julliard committed Mar 25, 2014
1 parent 3b96069 commit 9c1d687
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions dlls/msvcrt/tests/locale.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 9c1d687

Please sign in to comment.