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
f7345120
Commit
f7345120
authored
Mar 08, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vcomp110/tests: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0d910e6a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/vcomp110/tests/Makefile.in
+0
-1
vcomp110.c
dlls/vcomp110/tests/vcomp110.c
+2
-2
No files found.
dlls/vcomp110/tests/Makefile.in
View file @
f7345120
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
TESTDLL
=
vcomp110.dll
C_SRCS
=
\
...
...
dlls/vcomp110/tests/vcomp110.c
View file @
f7345120
...
...
@@ -271,14 +271,14 @@ static void test_C2VectParallel(void)
pC2VectParallel
(
test
->
start
,
test
->
end
,
test
->
step
,
test
->
end_included
,
test
->
thread_count
,
FALSE
,
test_C2VectParallel_payload
,
6
,
(
void
*
)
0xdeadbeef
,
test
,
i
,
FALSE
);
ok
(
test_C2VectParallel_call_count
==
test
->
expected_call_count
,
"Got unexpected call count %u, expected %u, test %u.
\n
"
,
"Got unexpected call count %
l
u, expected %u, test %u.
\n
"
,
test_C2VectParallel_call_count
,
test
->
expected_call_count
,
i
);
test_C2VectParallel_call_count
=
0
;
pC2VectParallel
(
test
->
start
,
test
->
end
,
test
->
step
,
test
->
end_included
,
test
->
thread_count
,
~
0u
,
test_C2VectParallel_payload
,
6
,
(
void
*
)
0xdeadbeef
,
test
,
i
,
TRUE
);
ok
(
test_C2VectParallel_call_count
==
test
->
expected_dynamic_call_count
,
"Got unexpected call count %u, expected %u, test %u.
\n
"
,
"Got unexpected call count %
l
u, expected %u, test %u.
\n
"
,
test_C2VectParallel_call_count
,
test
->
expected_dynamic_call_count
,
i
);
}
}
...
...
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