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
e533893d
Commit
e533893d
authored
Oct 25, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Oct 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cabinet: Fix two tests that return E_FAIL on win98.
parent
c98ca177
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
extract.c
dlls/cabinet/tests/extract.c
+4
-4
No files found.
dlls/cabinet/tests/extract.c
View file @
e533893d
...
...
@@ -604,8 +604,8 @@ static void test_Extract(void)
node
=
session
.
FileList
;
todo_wine
{
ok
(
res
==
HRESULT_FROM_WIN32
(
ERROR_ACCESS_DENIED
),
"Expected HRESULT_FROM_WIN32(ERROR_ACCESS_DENIED), got %08x
\n
"
,
res
);
ok
(
res
==
HRESULT_FROM_WIN32
(
ERROR_ACCESS_DENIED
)
||
res
==
E_FAIL
,
"Expected HRESULT_FROM_WIN32(ERROR_ACCESS_DENIED)
or E_FAIL
, got %08x
\n
"
,
res
);
ok
(
session
.
FileSize
==
6
,
"Expected 6, got %d
\n
"
,
session
.
FileSize
);
ok
(
session
.
Error
.
erfOper
==
FDIERROR_USER_ABORT
,
"Expected FDIERROR_USER_ABORT, got %d
\n
"
,
session
.
Error
.
erfOper
);
...
...
@@ -644,8 +644,8 @@ static void test_Extract(void)
res
=
pExtract
(
&
session
,
"extract.cab"
);
todo_wine
{
ok
(
res
==
HRESULT_FROM_WIN32
(
ERROR_ACCESS_DENIED
),
"Expected HRESULT_FROM_WIN32(ERROR_ACCESS_DENIED), got %08x
\n
"
,
res
);
ok
(
res
==
HRESULT_FROM_WIN32
(
ERROR_ACCESS_DENIED
)
||
res
==
E_FAIL
,
"Expected HRESULT_FROM_WIN32(ERROR_ACCESS_DENIED)
or E_FAIL
, got %08x
\n
"
,
res
);
ok
(
session
.
FileSize
==
26
,
"Expected 26, got %d
\n
"
,
session
.
FileSize
);
ok
(
session
.
Error
.
erfOper
==
FDIERROR_USER_ABORT
,
"Expected FDIERROR_USER_ABORT, got %d
\n
"
,
session
.
Error
.
erfOper
);
...
...
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