ucrtbase/tests: Remove no longer needed function availability checks.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6b6f3406f4
commit
b3d8b56e2c
|
@ -47,12 +47,6 @@ static void test__initialize_onexit_table(void)
|
|||
MSVCRT__onexit_table_t table, table2;
|
||||
int ret;
|
||||
|
||||
if (!p_initialize_onexit_table)
|
||||
{
|
||||
win_skip("_initialize_onexit_table() is not available.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
ret = p_initialize_onexit_table(NULL);
|
||||
ok(ret == -1, "got %d\n", ret);
|
||||
|
||||
|
@ -122,12 +116,6 @@ static void test__register_onexit_function(void)
|
|||
MSVCRT__onexit_t *f;
|
||||
int ret;
|
||||
|
||||
if (!p_register_onexit_function)
|
||||
{
|
||||
win_skip("_register_onexit_function() is not available.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
memset(&table, 0, sizeof(table));
|
||||
ret = p_initialize_onexit_table(&table);
|
||||
ok(ret == 0, "got %d\n", ret);
|
||||
|
@ -157,12 +145,6 @@ static void test__execute_onexit_table(void)
|
|||
MSVCRT__onexit_table_t table;
|
||||
int ret;
|
||||
|
||||
if (!p_execute_onexit_table)
|
||||
{
|
||||
win_skip("_execute_onexit_table() is not available.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
ret = p_execute_onexit_table(NULL);
|
||||
ok(ret == -1, "got %d\n", ret);
|
||||
|
||||
|
|
Loading…
Reference in New Issue