[PATCH 4/7] msvcrt/tests: Remove todo field.

Daniel Lehman dlehman25 at gmail.com
Sun Feb 10 12:55:49 CST 2019


Signed-off-by: Daniel Lehman <dlehman25 at gmail.com>
---
 dlls/msvcrt/tests/string.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dlls/msvcrt/tests/string.c b/dlls/msvcrt/tests/string.c
index bab003c60b..cbfa214b2c 100644
--- a/dlls/msvcrt/tests/string.c
+++ b/dlls/msvcrt/tests/string.c
@@ -3687,7 +3687,6 @@ static void test_SpecialCasing(void)
         const char *lang;
         wint_t ch;
         wint_t exp;
-        BOOL todo;
     };
 
     struct test ucases[] = {
@@ -3836,7 +3835,6 @@ static void test_SpecialCasing(void)
 
         ret = p_towlower(ucases[i].ch);
         exp = ucases[i].exp ? ucases[i].exp : ucases[i].ch;
-        todo_wine_if(ucases[i].todo)
         ok(ret == exp || broken(ret != exp), /* WinXP/2k3/Vista/2k8 */
             "expected lowercase %x, got %x for locale %s\n",
             exp, ret, ucases[i].lang);
@@ -3850,7 +3848,6 @@ static void test_SpecialCasing(void)
 
         ret = p_towupper(lcases[i].ch);
         exp = lcases[i].exp ? lcases[i].exp : lcases[i].ch;
-        todo_wine_if(lcases[i].todo)
         ok(ret == exp || broken(ret != exp), /* WinXP/2k3/Vista/2k8 */
             "expected uppercase %x, got %x for locale %s\n",
             exp, ret, lcases[i].lang);
@@ -3873,7 +3870,6 @@ static void test_SpecialCasing(void)
 
         ret = p__towlower_l(ucases[i].ch, locale);
         exp = ucases[i].exp ? ucases[i].exp : ucases[i].ch;
-        todo_wine_if(ucases[i].todo)
         ok(ret == exp, "expected lowercase %x, got %x for locale %s\n",
             exp, ret, ucases[i].lang);
 
@@ -3889,7 +3885,6 @@ static void test_SpecialCasing(void)
 
         ret = p__towupper_l(lcases[i].ch, locale);
         exp = lcases[i].exp ? lcases[i].exp : lcases[i].ch;
-        todo_wine_if(lcases[i].todo)
         ok(ret == exp, "expected uppercase %x, got %x for locale %s\n",
             exp, ret, lcases[i].lang);
 
-- 
2.17.1




More information about the wine-devel mailing list