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
c6442818
Commit
c6442818
authored
Feb 23, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
serialui/tests: Use win_skip() to skip over unimplemented functionality.
parent
292a1042
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
confdlg.c
dlls/serialui/tests/confdlg.c
+5
-5
No files found.
dlls/serialui/tests/confdlg.c
View file @
c6442818
...
...
@@ -96,7 +96,7 @@ static void test_drvCommConfigDialogA(void)
res
=
pGetDefaultCommConfigA
(
bufferA
,
pCC
,
&
len
);
if
(
res
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
/* NT does not implement the ANSI API */
skip
(
"*A not implemented
\n
"
);
win_
skip
(
"*A not implemented
\n
"
);
return
;
}
...
...
@@ -171,7 +171,7 @@ static void test_drvCommConfigDialogW(void)
SetLastError
(
0xdeadbeef
);
res
=
pGetDefaultCommConfigW
(
bufferW
,
pCC
,
&
len
);
if
(
res
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
skip
(
"*W not implemented
\n
"
);
win_
skip
(
"*W not implemented
\n
"
);
return
;
}
...
...
@@ -244,7 +244,7 @@ static void test_drvGetDefaultCommConfigA(void)
res
=
pGetDefaultCommConfigA
(
com1A
,
pCC
,
&
len
);
if
(
res
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
/* NT does not implement the ANSI API */
skip
(
"*A not implemented
\n
"
);
win_
skip
(
"*A not implemented
\n
"
);
return
;
}
ok
(
(
res
==
ERROR_INSUFFICIENT_BUFFER
)
&&
(
len
>=
i
),
...
...
@@ -336,7 +336,7 @@ static void test_drvGetDefaultCommConfigW(void)
SetLastError
(
0xdeadbeef
);
res
=
pGetDefaultCommConfigW
(
com1W
,
pCC
,
&
len
);
if
(
res
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
skip
(
"*W not implemented
\n
"
);
win_
skip
(
"*W not implemented
\n
"
);
return
;
}
ok
(
(
res
==
ERROR_INSUFFICIENT_BUFFER
)
&&
(
len
>=
i
),
...
...
@@ -419,7 +419,7 @@ START_TEST(confdlg)
ptr
=
load_functions
();
if
(
ptr
)
{
skip
(
"got NULL with %u for %s
\n
"
,
GetLastError
(),
ptr
);
win_
skip
(
"got NULL with %u for %s
\n
"
,
GetLastError
(),
ptr
);
return
;
}
...
...
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