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
0fc71d44
Commit
0fc71d44
authored
Feb 11, 2022
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr90/tests: Build without -DWINE_NO_LONG_TYPES.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2c8b49f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/msvcr90/tests/Makefile.in
+0
-1
msvcr90.c
dlls/msvcr90/tests/msvcr90.c
+4
-4
No files found.
dlls/msvcr90/tests/Makefile.in
View file @
0fc71d44
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
TESTDLL
=
msvcr90.dll
C_SRCS
=
\
...
...
dlls/msvcr90/tests/msvcr90.c
View file @
0fc71d44
...
...
@@ -339,7 +339,7 @@ static void __cdecl test_invalid_parameter_handler(const wchar_t *expression,
ok
(
function
==
NULL
,
"function is not NULL
\n
"
);
ok
(
file
==
NULL
,
"file is not NULL
\n
"
);
ok
(
line
==
0
,
"line = %u
\n
"
,
line
);
ok
(
arg
==
0
,
"arg = %
lx
\n
"
,
(
UINT_PTR
)
arg
);
ok
(
arg
==
0
,
"arg = %
Ix
\n
"
,
arg
);
ok
(
errno
!=
0xdeadbeef
,
"errno not set
\n
"
);
}
...
...
@@ -353,7 +353,7 @@ static BOOL init(void)
SetLastError
(
0xdeadbeef
);
hcrt
=
LoadLibraryA
(
"msvcr90.dll"
);
if
(
!
hcrt
)
{
win_skip
(
"msvcr90.dll not installed (got %d)
\n
"
,
GetLastError
());
win_skip
(
"msvcr90.dll not installed (got %
l
d)
\n
"
,
GetLastError
());
return
FALSE
;
}
...
...
@@ -1181,7 +1181,7 @@ static void test_getptd(void)
int
dec
,
sign
;
void
*
mbcinfo
,
*
locinfo
;
ok
(
ptd
->
tid
==
tid
,
"ptd->tid = %
x, expected %
x
\n
"
,
ptd
->
tid
,
tid
);
ok
(
ptd
->
tid
==
tid
,
"ptd->tid = %
lx, expected %l
x
\n
"
,
ptd
->
tid
,
tid
);
ok
(
ptd
->
handle
==
INVALID_HANDLE_VALUE
,
"ptd->handle = %p
\n
"
,
ptd
->
handle
);
ok
(
p_errno
()
==
&
ptd
->
thread_errno
,
"ptd->thread_errno is different then _errno()
\n
"
);
ok
(
p_doserrno
()
==
&
ptd
->
thread_doserrno
,
"ptd->thread_doserrno is different then __doserrno()
\n
"
);
...
...
@@ -1258,7 +1258,7 @@ struct block_file_arg
FILE
*
write
;
HANDLE
init
;
HANDLE
finish
;
int
deadlock_test
;
LONG
deadlock_test
;
};
static
DWORD
WINAPI
block_file
(
void
*
arg
)
...
...
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