Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b3d8b56e
Commit
b3d8b56e
authored
Jun 13, 2016
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 13, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
>
parent
6b6f3406
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
+0
-18
misc.c
dlls/ucrtbase/tests/misc.c
+0
-18
No files found.
dlls/ucrtbase/tests/misc.c
View file @
b3d8b56e
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment