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
842d1b69
Commit
842d1b69
authored
Oct 19, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Oct 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Add a test to show that operations on overwritten should no longer succeed.
parent
6d9372a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
storage32.c
dlls/ole32/tests/storage32.c
+12
-0
No files found.
dlls/ole32/tests/storage32.c
View file @
842d1b69
...
...
@@ -329,8 +329,20 @@ static void test_storage_stream(void)
/* wrap up */
r
=
IStream_Release
(
stm2
);
ok
(
r
==
0
,
"wrong ref count
\n
"
);
/* create a stream and write to it */
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_CREATE
|
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
0
,
&
stm2
);
ok
(
r
==
S_OK
,
"IStorage->CreateStream failed
\n
"
);
r
=
IStream_Seek
(
stm
,
pos
,
STREAM_SEEK_SET
,
&
p
);
todo_wine
ok
(
r
==
STG_E_REVERTED
,
"overwritten stream should return STG_E_REVERTED instead of 0x%08x
\n
"
,
r
);
r
=
IStream_Release
(
stm2
);
ok
(
r
==
0
,
"wrong ref count
\n
"
);
r
=
IStream_Release
(
stm
);
ok
(
r
==
0
,
"wrong ref count
\n
"
);
r
=
IStorage_Release
(
stg
);
ok
(
r
==
0
,
"wrong ref count
\n
"
);
r
=
DeleteFileW
(
filename
);
...
...
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