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
750fceba
Commit
750fceba
authored
Jun 01, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Remove tests for internal DDE handle format, we don't care how the…
user32/tests: Remove tests for internal DDE handle format, we don't care how the handles are implemented.
parent
2c1b94bd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
36 deletions
+0
-36
dde.c
dlls/user32/tests/dde.c
+0
-36
No files found.
dlls/user32/tests/dde.c
View file @
750fceba
...
...
@@ -1615,12 +1615,6 @@ static void test_DdeCreateDataHandle(void)
ok
(
hdata
!=
NULL
,
"Expected non-NULL hdata
\n
"
);
ok
(
err
==
DMLERR_NO_ERROR
,
"Expected DMLERR_NO_ERROR, got %d
\n
"
,
err
);
ptr
=
GlobalLock
(
hdata
);
todo_wine
{
ok
(
ptr
==
NULL
,
"Expected NULL, got %p
\n
"
,
ptr
);
}
ptr
=
DdeAccessData
(
hdata
,
&
size
);
ok
(
ptr
!=
NULL
,
"Expected non-NULL ptr
\n
"
);
ok
(
size
==
260
,
"Expected 260, got %d
\n
"
,
size
);
...
...
@@ -1638,12 +1632,6 @@ static void test_DdeCreateDataHandle(void)
ok
(
hdata
!=
NULL
,
"Expected non-NULL hdata
\n
"
);
ok
(
err
==
DMLERR_NO_ERROR
,
"Expected DMLERR_NO_ERROR, got %d
\n
"
,
err
);
ptr
=
GlobalLock
(
hdata
);
todo_wine
{
ok
(
ptr
==
NULL
,
"Expected NULL, got %p
\n
"
,
ptr
);
}
ptr
=
DdeAccessData
(
hdata
,
&
size
);
ok
(
ptr
!=
NULL
,
"Expected non-NULL ptr
\n
"
);
ok
(
size
==
0
,
"Expected 0, got %d
\n
"
,
size
);
...
...
@@ -1661,12 +1649,6 @@ static void test_DdeCreateDataHandle(void)
ok
(
hdata
!=
NULL
,
"Expected non-NULL hdata
\n
"
);
ok
(
err
==
DMLERR_NO_ERROR
,
"Expected DMLERR_NO_ERROR, got %d
\n
"
,
err
);
ptr
=
GlobalLock
(
hdata
);
todo_wine
{
ok
(
ptr
==
NULL
,
"Expected NULL, got %p
\n
"
,
ptr
);
}
ptr
=
DdeAccessData
(
hdata
,
&
size
);
ok
(
ptr
!=
NULL
,
"Expected non-NULL ptr
\n
"
);
ok
(
size
==
262
,
"Expected 262, got %d
\n
"
,
size
);
...
...
@@ -1688,12 +1670,6 @@ static void test_DdeCreateDataHandle(void)
ok
(
hdata
!=
NULL
,
"Expected non-NULL hdata
\n
"
);
ok
(
err
==
DMLERR_NO_ERROR
,
"Expected DMLERR_NO_ERROR, got %d
\n
"
,
err
);
ptr
=
GlobalLock
(
hdata
);
todo_wine
{
ok
(
ptr
==
NULL
,
"Expected NULL, got %p
\n
"
,
ptr
);
}
ptr
=
DdeAccessData
(
hdata
,
&
size
);
ok
(
ptr
!=
NULL
,
"Expected non-NULL ptr
\n
"
);
ok
(
!
lstrcmpA
((
LPSTR
)
ptr
,
"data"
),
"Expected data, got %s
\n
"
,
ptr
);
...
...
@@ -1712,12 +1688,6 @@ static void test_DdeCreateDataHandle(void)
ok
(
hdata
!=
NULL
,
"Expected non-NULL hdata
\n
"
);
ok
(
err
==
DMLERR_NO_ERROR
,
"Expected DMLERR_NO_ERROR, got %d
\n
"
,
err
);
ptr
=
GlobalLock
(
hdata
);
todo_wine
{
ok
(
ptr
==
NULL
,
"Expected NULL, got %p
\n
"
,
ptr
);
}
ptr
=
DdeAccessData
(
hdata
,
&
size
);
ok
(
ptr
!=
NULL
,
"Expected non-NULL ptr
\n
"
);
ok
(
!
lstrcmpA
((
LPSTR
)
ptr
,
"data"
),
"Expected data, got %s
\n
"
,
ptr
);
...
...
@@ -1736,12 +1706,6 @@ static void test_DdeCreateDataHandle(void)
ok
(
hdata
!=
NULL
,
"Expected non-NULL hdata
\n
"
);
ok
(
err
==
DMLERR_NO_ERROR
,
"Expected DMLERR_NO_ERROR, got %d
\n
"
,
err
);
ptr
=
GlobalLock
(
hdata
);
todo_wine
{
ok
(
ptr
==
NULL
,
"Expected NULL, got %p
\n
"
,
ptr
);
}
ptr
=
DdeAccessData
(
hdata
,
&
size
);
ok
(
ptr
!=
NULL
,
"Expected non-NULL ptr
\n
"
);
ok
(
!
lstrcmpA
((
LPSTR
)
ptr
,
"data"
),
"Expected data, got %s
\n
"
,
ptr
);
...
...
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