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
98bfe9c6
Commit
98bfe9c6
authored
Oct 10, 2006
by
Saulius Krasuckas
Committed by
Alexandre Julliard
Oct 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lz32/tests: Non-op cosmetics for LZOpenFile[AW] operations.
parent
dbe8adf2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
6 deletions
+19
-6
lzexpand_main.c
dlls/lz32/tests/lzexpand_main.c
+19
-6
No files found.
dlls/lz32/tests/lzexpand_main.c
View file @
98bfe9c6
...
...
@@ -363,16 +363,23 @@ static void test_LZOpenFileA(void)
ok
(
retval
!=
INVALID_FILE_ATTRIBUTES
,
"GetFileAttributesA: error %ld
\n
"
,
GetLastError
());
/* Check various opening options. */
/* Check various opening options: */
/* a, for reading. */
file
=
LZOpenFileA
(
filename_
,
&
test
,
OF_READ
);
ok
(
file
>=
0
,
"LZOpenFileA failed on read
\n
"
);
LZClose
(
file
);
/* b, for writing. */
file
=
LZOpenFileA
(
filename_
,
&
test
,
OF_WRITE
);
ok
(
file
>=
0
,
"LZOpenFileA failed on write
\n
"
);
LZClose
(
file
);
/* c, for reading and writing. */
file
=
LZOpenFileA
(
filename_
,
&
test
,
OF_READWRITE
);
ok
(
file
>=
0
,
"LZOpenFileA failed on read/write
\n
"
);
LZClose
(
file
);
/* d, for checking file existance. */
file
=
LZOpenFileA
(
filename_
,
&
test
,
OF_EXIST
);
ok
(
file
>=
0
,
"LZOpenFileA failed on read/write
\n
"
);
LZClose
(
file
);
...
...
@@ -456,8 +463,7 @@ static void test_LZCopy(void)
LZClose
(
source
);
LZClose
(
dest
);
file
=
CreateFileA
(
filename2
,
GENERIC_READ
,
0
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
file
=
CreateFileA
(
filename2
,
GENERIC_READ
,
0
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
ok
(
file
!=
INVALID_HANDLE_VALUE
,
"CreateFileA: error %ld
\n
"
,
GetLastError
());
...
...
@@ -695,28 +701,35 @@ static void test_LZOpenFileW(void)
trace
(
"LZOpenFileW call not implemented, skipping rest of the test
\n
"
);
return
;
}
ok
(
file
==
LZERROR_BADINHANDLE
,
"LZOpenFileW succeeded on nonexistent file
\n
"
);
ok
(
file
==
LZERROR_BADINHANDLE
,
"LZOpenFileW succeeded on nonexistent file
\n
"
);
LZClose
(
file
);
/* Create an empty file. */
file
=
LZOpenFileW
(
filenameW_
,
&
test
,
OF_CREATE
);
ok
(
file
>=
0
,
"LZOpenFile failed on creation
\n
"
);
LZClose
(
file
);
retval
=
GetFileAttributesW
(
filenameW_
);
ok
(
retval
!=
INVALID_FILE_ATTRIBUTES
,
"GetFileAttributes: error %ld
\n
"
,
GetLastError
());
/* Check various opening options. */
/* Check various opening options: */
/* a, for reading. */
file
=
LZOpenFileW
(
filenameW_
,
&
test
,
OF_READ
);
ok
(
file
>=
0
,
"LZOpenFileW failed on read
\n
"
);
LZClose
(
file
);
/* b, for writing. */
file
=
LZOpenFileW
(
filenameW_
,
&
test
,
OF_WRITE
);
ok
(
file
>=
0
,
"LZOpenFileW failed on write
\n
"
);
LZClose
(
file
);
/* c, for reading and writing. */
file
=
LZOpenFileW
(
filenameW_
,
&
test
,
OF_READWRITE
);
ok
(
file
>=
0
,
"LZOpenFileW failed on read/write
\n
"
);
LZClose
(
file
);
/* d, for checking file existance. */
file
=
LZOpenFileW
(
filenameW_
,
&
test
,
OF_EXIST
);
ok
(
file
>=
0
,
"LZOpenFileW failed on read/write
\n
"
);
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