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
43c94c95
Commit
43c94c95
authored
Dec 27, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localspl/tests: In multiline strings there is no need for '\' at the end of the lines.
parent
ee2e686a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
localmon.c
dlls/localspl/tests/localmon.c
+11
-11
No files found.
dlls/localspl/tests/localmon.c
View file @
43c94c95
...
...
@@ -212,7 +212,7 @@ static void test_EnumPorts(void)
}
ok
(
!
res
&&
(
GetLastError
()
==
ERROR_INSUFFICIENT_BUFFER
),
"(%d) returned %d with %d and %d, %d (expected '0' with "
\
"(%d) returned %d with %d and %d, %d (expected '0' with "
"ERROR_INSUFFICIENT_BUFFER)
\n
"
,
level
,
res
,
GetLastError
(),
cbBuf
,
pcReturned
);
...
...
@@ -239,7 +239,7 @@ static void test_EnumPorts(void)
SetLastError
(
0xdeadbeef
);
res
=
pEnumPorts
(
NULL
,
level
,
buffer
,
cbBuf
-
1
,
&
pcbNeeded
,
&
pcReturned
);
ok
(
!
res
&&
(
GetLastError
()
==
ERROR_INSUFFICIENT_BUFFER
),
"(%d) returned %d with %d and %d, %d (expected '0' with "
\
"(%d) returned %d with %d and %d, %d (expected '0' with "
"ERROR_INSUFFICIENT_BUFFER)
\n
"
,
level
,
res
,
GetLastError
(),
pcbNeeded
,
pcReturned
);
...
...
@@ -281,13 +281,13 @@ static void test_InitializePrintMonitor(void)
res
=
pInitializePrintMonitor
(
NULL
);
/* The Parameter was unchecked before w2k */
ok
(
res
||
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
),
"returned %p with %d
\n
(expected '!= NULL' or: NULL with "
\
"returned %p with %d
\n
(expected '!= NULL' or: NULL with "
"ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
res
=
pInitializePrintMonitor
(
emptyW
);
ok
(
res
||
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
),
"returned %p with %d
\n
(expected '!= NULL' or: NULL with "
\
"returned %p with %d
\n
(expected '!= NULL' or: NULL with "
"ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
...
...
@@ -357,7 +357,7 @@ static void test_XcvDataPort(void)
SetLastError
(
0xdeadbeef
);
res
=
pXcvDataPort
(
hXcv
,
cmd_MonitorUIW
,
NULL
,
0
,
NULL
,
0
,
&
needed
);
ok
(
(
res
==
ERROR_INSUFFICIENT_BUFFER
)
&&
(
needed
<=
MAX_PATH
),
"returned %d with 0x%x and 0x%x (expected 'ERROR_INSUFFICIENT_BUFFER' "
\
"returned %d with 0x%x and 0x%x (expected 'ERROR_INSUFFICIENT_BUFFER' "
" and '<= MAX_PATH')
\n
"
,
res
,
GetLastError
(),
needed
);
if
(
needed
>
MAX_PATH
)
goto
xcv_cleanup
;
...
...
@@ -367,7 +367,7 @@ static void test_XcvDataPort(void)
needed
=
(
DWORD
)
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pXcvDataPort
(
hXcv
,
emptyW
,
NULL
,
0
,
NULL
,
0
,
&
needed
);
ok
(
res
==
ERROR_INVALID_PARAMETER
,
"returned %d with 0x%x and 0x%x "
\
ok
(
res
==
ERROR_INVALID_PARAMETER
,
"returned %d with 0x%x and 0x%x "
"(expected 'ERROR_INVALID_PARAMETER')
\n
"
,
res
,
GetLastError
(),
needed
);
if
(
0
)
{
...
...
@@ -382,7 +382,7 @@ static void test_XcvDataPort(void)
needed
=
(
DWORD
)
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pXcvDataPort
(
NULL
,
cmd_MonitorUIW
,
NULL
,
0
,
buffer
,
len
,
&
needed
);
ok
(
res
==
ERROR_SUCCESS
,
"returned %d with 0x%x and 0x%x "
\
ok
(
res
==
ERROR_SUCCESS
,
"returned %d with 0x%x and 0x%x "
"(expected 'ERROR_SUCCESS')
\n
"
,
res
,
GetLastError
(),
needed
);
...
...
@@ -391,14 +391,14 @@ static void test_XcvDataPort(void)
needed
=
(
DWORD
)
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pXcvDataPort
(
hXcv
,
cmd_MonitorUI_lcaseW
,
NULL
,
0
,
buffer
,
len
,
&
needed
);
ok
(
res
==
ERROR_INVALID_PARAMETER
,
"returned %d with 0x%x and 0x%x "
\
ok
(
res
==
ERROR_INVALID_PARAMETER
,
"returned %d with 0x%x and 0x%x "
"(expected 'ERROR_INVALID_PARAMETER')
\n
"
,
res
,
GetLastError
(),
needed
);
/* off by one: larger */
needed
=
(
DWORD
)
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pXcvDataPort
(
hXcv
,
cmd_MonitorUIW
,
NULL
,
0
,
buffer
,
len
+
1
,
&
needed
);
ok
(
res
==
ERROR_SUCCESS
,
"returned %d with 0x%x and 0x%x "
\
ok
(
res
==
ERROR_SUCCESS
,
"returned %d with 0x%x and 0x%x "
"(expected 'ERROR_SUCCESS')
\n
"
,
res
,
GetLastError
(),
needed
);
...
...
@@ -406,7 +406,7 @@ static void test_XcvDataPort(void)
needed
=
(
DWORD
)
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pXcvDataPort
(
hXcv
,
cmd_MonitorUIW
,
NULL
,
0
,
buffer
,
len
-
1
,
&
needed
);
ok
(
res
==
ERROR_INSUFFICIENT_BUFFER
,
"returned %d with 0x%x and 0x%x "
\
ok
(
res
==
ERROR_INSUFFICIENT_BUFFER
,
"returned %d with 0x%x and 0x%x "
"(expected 'ERROR_INSUFFICIENT_BUFFER')
\n
"
,
res
,
GetLastError
(),
needed
);
/* Normal use. The DLL-Name without a Path is returned */
...
...
@@ -414,7 +414,7 @@ static void test_XcvDataPort(void)
needed
=
(
DWORD
)
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pXcvDataPort
(
hXcv
,
cmd_MonitorUIW
,
NULL
,
0
,
buffer
,
len
,
&
needed
);
ok
(
res
==
ERROR_SUCCESS
,
"returned %d with 0x%x and 0x%x "
\
ok
(
res
==
ERROR_SUCCESS
,
"returned %d with 0x%x and 0x%x "
"(expected 'ERROR_SUCCESS')
\n
"
,
res
,
GetLastError
(),
needed
);
xcv_cleanup:
...
...
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