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
3c969224
Commit
3c969224
authored
Jul 01, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Skip the byte swap test in win2k.
parent
36e703b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
rtl.c
dlls/ntdll/tests/rtl.c
+6
-0
No files found.
dlls/ntdll/tests/rtl.c
View file @
3c969224
...
...
@@ -264,6 +264,12 @@ static void test_RtlUlonglongByteSwap(void)
{
ULONGLONG
result
;
if
(
pRtlUlonglongByteSwap
(
0
)
!=
0
)
{
win_skip
(
"Broken RtlUlonglongByteSwap in win2k
\n
"
);
return
;
}
result
=
pRtlUlonglongByteSwap
(
((
ULONGLONG
)
0x76543210
<<
32
)
|
0x87654321
);
ok
(
(((
ULONGLONG
)
0x21436587
<<
32
)
|
0x10325476
)
==
result
,
"RtlUlonglongByteSwap(0x7654321087654321) returns 0x%x%08x, expected 0x2143658710325476
\n
"
,
...
...
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