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
46fd5620
Commit
46fd5620
authored
Oct 08, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lz32/tests: Change a trace into a skip.
parent
eba92bd7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lzexpand_main.c
dlls/lz32/tests/lzexpand_main.c
+3
-3
No files found.
dlls/lz32/tests/lzexpand_main.c
View file @
46fd5620
...
@@ -770,13 +770,13 @@ static void test_LZOpenFileW(void)
...
@@ -770,13 +770,13 @@ static void test_LZOpenFileW(void)
SetLastError
(
0xfaceabee
);
SetLastError
(
0xfaceabee
);
/* Check for nonexistent file. */
/* Check for nonexistent file. */
file
=
LZOpenFileW
(
badfilenameW
,
&
test
,
OF_READ
);
file
=
LZOpenFileW
(
badfilenameW
,
&
test
,
OF_READ
);
ok
(
GetLastError
()
==
ERROR_FILE_NOT_FOUND
||
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
,
"GetLastError() returns %d
\n
"
,
GetLastError
());
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
{
trace
(
"LZOpenFileW call not implemented, skipping rest of the test
\n
"
);
win_skip
(
"LZOpenFileW call is not implemented
\n
"
);
return
;
return
;
}
}
ok
(
GetLastError
()
==
ERROR_FILE_NOT_FOUND
,
"GetLastError() returns %d
\n
"
,
GetLastError
());
ok
(
file
==
LZERROR_BADINHANDLE
,
"LZOpenFileW succeeded on nonexistent file
\n
"
);
ok
(
file
==
LZERROR_BADINHANDLE
,
"LZOpenFileW succeeded on nonexistent file
\n
"
);
LZClose
(
file
);
LZClose
(
file
);
...
...
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