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
8896cb8e
Commit
8896cb8e
authored
Nov 21, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Nov 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove tests that crash on XP and W2K3.
parent
b3df6da4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
string.c
dlls/ntdll/tests/string.c
+16
-8
No files found.
dlls/ntdll/tests/string.c
View file @
8896cb8e
...
...
@@ -752,20 +752,28 @@ static void test_ulonglongtow(void)
expected_wstr
[
pos
]
=
ulong2str
[
0
].
Buffer
[
pos
];
}
/* for */
expected_wstr
[
LARGE_STRI_BUFFER_LENGTH
]
=
'\0'
;
result
=
p_i64tow
(
ulong2str
[
0
].
value
,
NULL
,
10
);
ok
(
result
==
NULL
,
"(test d): _i64tow(0x%x%08x, NULL, 10) has result %p, expected: NULL
\n
"
,
(
DWORD
)(
ulonglong2str
[
0
].
value
>>
32
),
(
DWORD
)
ulonglong2str
[
0
].
value
,
result
);
if
(
0
)
{
/* Crashes on XP and W2K3 */
result
=
p_i64tow
(
ulong2str
[
0
].
value
,
NULL
,
10
);
ok
(
result
==
NULL
,
"(test d): _i64tow(0x%x%08x, NULL, 10) has result %p, expected: NULL
\n
"
,
(
DWORD
)(
ulonglong2str
[
0
].
value
>>
32
),
(
DWORD
)
ulonglong2str
[
0
].
value
,
result
);
}
if
(
p_ui64tow
)
{
for
(
pos
=
0
;
pos
<
LARGE_STRI_BUFFER_LENGTH
;
pos
++
)
{
expected_wstr
[
pos
]
=
ulong2str
[
0
].
Buffer
[
pos
];
}
/* for */
expected_wstr
[
LARGE_STRI_BUFFER_LENGTH
]
=
'\0'
;
result
=
p_ui64tow
(
ulong2str
[
0
].
value
,
NULL
,
10
);
ok
(
result
==
NULL
,
"(test e): _ui64tow(0x%x%08x, NULL, 10) has result %p, expected: NULL
\n
"
,
(
DWORD
)(
ulonglong2str
[
0
].
value
>>
32
),
(
DWORD
)
ulonglong2str
[
0
].
value
,
result
);
if
(
0
)
{
/* Crashes on XP and W2K3 */
result
=
p_ui64tow
(
ulong2str
[
0
].
value
,
NULL
,
10
);
ok
(
result
==
NULL
,
"(test e): _ui64tow(0x%x%08x, NULL, 10) has result %p, expected: NULL
\n
"
,
(
DWORD
)(
ulonglong2str
[
0
].
value
>>
32
),
(
DWORD
)
ulonglong2str
[
0
].
value
,
result
);
}
}
/* if */
}
...
...
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