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
ff4292c2
Commit
ff4292c2
authored
May 26, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
May 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Add more IStream_Seek tests for hglobalstream.
parent
0ce3bcee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
1 deletion
+46
-1
hglobalstream.c
dlls/ole32/tests/hglobalstream.c
+46
-1
No files found.
dlls/ole32/tests/hglobalstream.c
View file @
ff4292c2
...
...
@@ -151,7 +151,7 @@ static void test_streamonhglobal(IStream *pStream)
ok
(
ull
.
u
.
LowPart
==
0
,
"should have set LowPart to 0 instead of %d
\n
"
,
ull
.
u
.
LowPart
);
ok
(
ull
.
u
.
HighPart
==
0
,
"should have set HighPart to 0 instead of %d
\n
"
,
ull
.
u
.
HighPart
);
/* IStream_Seek -- invalid LowPart value (seek
from current position
) */
/* IStream_Seek -- invalid LowPart value (seek
before start of stream
) */
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
sizeof
(
data
);
hr
=
IStream_Seek
(
pStream
,
ll
,
STREAM_SEEK_SET
,
&
ull
);
...
...
@@ -166,6 +166,51 @@ static void test_streamonhglobal(IStream *pStream)
ok
(
ull
.
u
.
LowPart
==
sizeof
(
data
),
"LowPart set to %d
\n
"
,
ull
.
u
.
LowPart
);
ok
(
ull
.
u
.
HighPart
==
0
,
"should have set HighPart to 0 instead of %d
\n
"
,
ull
.
u
.
HighPart
);
/* IStream_Seek -- valid LowPart value (seek to start of stream) */
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
sizeof
(
data
);
hr
=
IStream_Seek
(
pStream
,
ll
,
STREAM_SEEK_SET
,
&
ull
);
ok_ole_success
(
hr
,
"IStream_Seek"
);
ull
.
u
.
HighPart
=
0xCAFECAFE
;
ull
.
u
.
LowPart
=
0xCAFECAFE
;
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
-
sizeof
(
data
);
hr
=
IStream_Seek
(
pStream
,
ll
,
STREAM_SEEK_CUR
,
&
ull
);
todo_wine
ok_ole_success
(
hr
,
"IStream_Seek"
);
todo_wine
ok
(
ull
.
u
.
LowPart
==
0
,
"LowPart set to %d
\n
"
,
ull
.
u
.
LowPart
);
ok
(
ull
.
u
.
HighPart
==
0
,
"should have set HighPart to 0 instead of %d
\n
"
,
ull
.
u
.
HighPart
);
/* IStream_Seek -- invalid LowPart value (seek to start of stream-1) */
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
sizeof
(
data
);
hr
=
IStream_Seek
(
pStream
,
ll
,
STREAM_SEEK_SET
,
&
ull
);
ok_ole_success
(
hr
,
"IStream_Seek"
);
ull
.
u
.
HighPart
=
0xCAFECAFE
;
ull
.
u
.
LowPart
=
0xCAFECAFE
;
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
-
sizeof
(
data
)
-
1
;
hr
=
IStream_Seek
(
pStream
,
ll
,
STREAM_SEEK_CUR
,
&
ull
);
ok
(
hr
==
STG_E_SEEKERROR
,
"IStream_Seek should have returned STG_E_SEEKERROR instead of 0x%08x
\n
"
,
hr
);
ok
(
ull
.
u
.
LowPart
==
sizeof
(
data
),
"LowPart set to %d
\n
"
,
ull
.
u
.
LowPart
);
ok
(
ull
.
u
.
HighPart
==
0
,
"should have set HighPart to 0 instead of %d
\n
"
,
ull
.
u
.
HighPart
);
/* IStream_Seek -- valid LowPart value (seek forward to 0x80000000) */
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
sizeof
(
data
);
hr
=
IStream_Seek
(
pStream
,
ll
,
STREAM_SEEK_SET
,
&
ull
);
ok_ole_success
(
hr
,
"IStream_Seek"
);
ull
.
u
.
HighPart
=
0xCAFECAFE
;
ull
.
u
.
LowPart
=
0xCAFECAFE
;
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
0x80000000
-
sizeof
(
data
);
hr
=
IStream_Seek
(
pStream
,
ll
,
STREAM_SEEK_CUR
,
&
ull
);
ok_ole_success
(
hr
,
"IStream_Seek"
);
ok
(
ull
.
u
.
LowPart
==
0x80000000
,
"LowPart set to %d
\n
"
,
ull
.
u
.
LowPart
);
ok
(
ull
.
u
.
HighPart
==
0
,
"should have set HighPart to 0 instead of %d
\n
"
,
ull
.
u
.
HighPart
);
/* IStream_Seek -- invalid LowPart value (seek to beginning) */
ll
.
u
.
HighPart
=
0
;
ll
.
u
.
LowPart
=
sizeof
(
data
);
...
...
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