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
98dec479
Commit
98dec479
authored
Feb 02, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Feb 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: Fix a couple more test failures on Win9x.
parent
70c572fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
util.c
dlls/mapi32/tests/util.c
+4
-2
No files found.
dlls/mapi32/tests/util.c
View file @
98dec479
...
...
@@ -51,7 +51,8 @@ static void test_SwapPword(void)
shorts
[
1
]
=
0x10ff
;
shorts
[
2
]
=
0x2001
;
pSwapPword
(
shorts
,
2
);
ok
(
shorts
[
0
]
==
0x01ff
&&
shorts
[
1
]
==
0xff10
&&
shorts
[
2
]
==
0x2001
,
ok
((
shorts
[
0
]
==
0x01ff
&&
shorts
[
1
]
==
0xff10
&&
shorts
[
2
]
==
0x2001
)
||
broken
(
shorts
[
0
]
==
0xff01
&&
shorts
[
1
]
==
0x10ff
&&
shorts
[
2
]
==
0x2001
)
/* Win9x */
,
"Expected {0x01ff,0xff10,0x2001}, got {0x%04x,0x%04x,0x%04x}
\n
"
,
shorts
[
0
],
shorts
[
1
],
shorts
[
2
]);
}
...
...
@@ -68,7 +69,8 @@ static void test_SwapPlong(void)
longs
[
1
]
=
0x1000ffff
;
longs
[
2
]
=
0x20000001
;
pSwapPlong
(
longs
,
2
);
ok
(
longs
[
0
]
==
0x0100ffff
&&
longs
[
1
]
==
0xffff0010
&&
longs
[
2
]
==
0x20000001
,
ok
((
longs
[
0
]
==
0x0100ffff
&&
longs
[
1
]
==
0xffff0010
&&
longs
[
2
]
==
0x20000001
)
||
broken
(
longs
[
0
]
==
0xffff0001
&&
longs
[
1
]
==
0x1000ffff
&&
longs
[
2
]
==
0x20000001
)
/* Win9x */
,
"Expected {0x0100ffff,0xffff0010,0x20000001}, got {0x%08x,0x%08x,0x%08x}
\n
"
,
longs
[
0
],
longs
[
1
],
longs
[
2
]);
}
...
...
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