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
3cbf55cc
Commit
3cbf55cc
authored
Jan 03, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Skip large integer tests that crash on 64-bit Vista.
parent
f5df4075
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
large_int.c
dlls/ntdll/tests/large_int.c
+16
-0
No files found.
dlls/ntdll/tests/large_int.c
View file @
3cbf55cc
...
...
@@ -286,6 +286,14 @@ static void one_RtlInt64ToUnicodeString_test(int test_num, const largeint2str_t
STRING
ansi_str
;
NTSTATUS
result
;
#ifdef _WIN64
if
(
largeint2str
->
value
>>
32
==
0xffffffff
)
/* this crashes on 64-bit Vista */
{
skip
(
"Value ffffffff%08x broken on 64-bit windows
\n
"
,
(
DWORD
)
largeint2str
->
value
);
return
;
}
#endif
for
(
pos
=
0
;
pos
<
LARGE_STRI_BUFFER_LENGTH
;
pos
++
)
{
expected_str_Buffer
[
pos
]
=
largeint2str
->
Buffer
[
pos
];
}
/* for */
...
...
@@ -367,6 +375,14 @@ static void one_RtlLargeIntegerToChar_test(int test_num, const largeint2str_t *l
char
dest_str
[
LARGE_STRI_BUFFER_LENGTH
+
1
];
ULONGLONG
value
;
#ifdef _WIN64
if
(
largeint2str
->
value
>>
32
==
0xffffffff
)
/* this crashes on 64-bit Vista */
{
skip
(
"Value ffffffff%08x broken on 64-bit windows
\n
"
,
(
DWORD
)
largeint2str
->
value
);
return
;
}
#endif
memset
(
dest_str
,
'-'
,
LARGE_STRI_BUFFER_LENGTH
);
dest_str
[
LARGE_STRI_BUFFER_LENGTH
]
=
'\0'
;
value
=
largeint2str
->
value
;
...
...
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