diff --git a/modules/rostests/apitests/crt/crtdata.c b/modules/rostests/apitests/crt/crtdata.c index b830575c7ea..57beebba617 100644 --- a/modules/rostests/apitests/crt/crtdata.c +++ b/modules/rostests/apitests/crt/crtdata.c @@ -94,7 +94,7 @@ void Test___lc_codepage(void) ok_int(__lc_codepage, 0); ok_int(___lc_codepage_func(), 0); __lc_codepage++; - todo_ros ok_int(___lc_codepage_func(), 0); + ok_int(___lc_codepage_func(), 0); __lc_codepage--; } @@ -117,7 +117,7 @@ void Test___lc_handle(void) _CRTIMP int* ___lc_handle_func(); ok_int(*___lc_handle_func(), 0); __lc_handle++; - todo_ros ok_int(*___lc_handle_func(), 0); + ok_int(*___lc_handle_func(), 0); __lc_handle--; } @@ -202,7 +202,7 @@ void Test___wargv(void) void Test___winitenv(void) { _CRTIMP extern wchar_t** __winitenv; - todo_ros ok(__winitenv == NULL, "__winitenv is not NULL\n"); + ok(__winitenv == NULL, "__winitenv is not NULL\n"); #ifdef _M_IX86 _CRTIMP wchar_t*** __p___winitenv(void); ok_ptr(__p___winitenv(), &__winitenv); @@ -553,7 +553,7 @@ void Test__wcmdln(void) void Test__wenviron(void) { void* p = &_wenviron; - todo_ros ok(_wenviron == NULL, "_wenviron is not NULL\n"); + ok(_wenviron == NULL, "_wenviron is not NULL\n"); #undef _wenviron _CRTIMP extern wchar_t** _wenviron;