Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cfb33d18
Commit
cfb33d18
authored
Feb 21, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Feb 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion/tests: Fix remaining win98 failures in asmcache.
parent
d68c2956
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
10 deletions
+30
-10
asmcache.c
dlls/fusion/tests/asmcache.c
+30
-10
No files found.
dlls/fusion/tests/asmcache.c
View file @
cfb33d18
...
...
@@ -1193,7 +1193,9 @@ static void test_QueryAssemblyInfo(void)
"Expected 0, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
HighPart
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\n
"
);
...
...
@@ -1214,7 +1216,9 @@ static void test_QueryAssemblyInfo(void)
"Expected 0, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
HighPart
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\n
"
);
...
...
@@ -1237,7 +1241,9 @@ static void test_QueryAssemblyInfo(void)
{
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_INSUFFICIENT_BUFFER
),
"Expected HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), got %08x
\n
"
,
hr
);
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
info
.
cchBuf
==
lstrlenW
(
asmpath
)
+
1
,
"Expected %d, got %d
\n
"
,
lstrlenW
(
asmpath
)
+
1
,
info
.
cchBuf
);
...
...
@@ -1260,7 +1266,9 @@ static void test_QueryAssemblyInfo(void)
{
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_INSUFFICIENT_BUFFER
),
"Expected HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), got %08x
\n
"
,
hr
);
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
info
.
cchBuf
==
lstrlenW
(
asmpath
)
+
1
,
"Expected %d, got %d
\n
"
,
lstrlenW
(
asmpath
)
+
1
,
info
.
cchBuf
);
...
...
@@ -1282,7 +1290,9 @@ static void test_QueryAssemblyInfo(void)
"Expected %d, got %d
\n
"
,
lstrlenW
(
asmpath
)
+
1
,
info
.
cchBuf
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\n
"
);
...
...
@@ -1304,7 +1314,9 @@ static void test_QueryAssemblyInfo(void)
"Expected 0, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
HighPart
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\n
"
);
...
...
@@ -1328,7 +1340,9 @@ static void test_QueryAssemblyInfo(void)
"Expected 0, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
HighPart
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\n
"
);
...
...
@@ -1372,7 +1386,9 @@ static void test_QueryAssemblyInfo(void)
"Expected 0, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
HighPart
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\n
"
);
...
...
@@ -1419,7 +1435,9 @@ static void test_QueryAssemblyInfo(void)
"Expected 0, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
HighPart
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\n
"
);
...
...
@@ -1463,7 +1481,9 @@ static void test_QueryAssemblyInfo(void)
"Expected 0, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
HighPart
);
todo_wine
{
ok
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
,
/* win9x: 32 */
ok
((
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
4
)
||
broken
(
info
.
uliAssemblySizeInKB
.
u
.
LowPart
==
32
),
"Expected 4, got %d
\n
"
,
info
.
uliAssemblySizeInKB
.
u
.
LowPart
);
ok
(
!
lstrcmpW
(
info
.
pszCurrentAssemblyPathBuf
,
asmpath
),
"Wrong assembly path returned
\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