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
0bb3e4f7
Commit
0bb3e4f7
authored
Dec 22, 2006
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Dec 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspoool/tests: Rename unclear string.
parent
9721edf5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
info.c
dlls/winspool.drv/tests/info.c
+4
-4
No files found.
dlls/winspool.drv/tests/info.c
View file @
0bb3e4f7
...
...
@@ -32,17 +32,17 @@
#define MAGIC_DEAD 0xdeadbeef
#define DEFAULT_PRINTER_SIZE 1000
static
CHAR
does_not_exist_dll
[]
=
"does_not_exist
s
.dll"
;
static
CHAR
does_not_exist
[]
=
"does_not_exist
s
"
;
static
CHAR
does_not_exist_dll
[]
=
"does_not_exist.dll"
;
static
CHAR
does_not_exist
[]
=
"does_not_exist"
;
static
CHAR
empty
[]
=
""
;
static
CHAR
env_x86
[]
=
"Windows NT x86"
;
static
CHAR
env_win9x_case
[]
=
"windowS 4.0"
;
static
CHAR
illegal_name
[]
=
"illegal,name"
;
static
CHAR
invalid_env
[]
=
"invalid_env"
;
static
CHAR
invalid_server
[]
=
"
\\
invalid_server"
;
static
CHAR
portname_com1
[]
=
"COM1:"
;
static
CHAR
portname_file
[]
=
"FILE:"
;
static
CHAR
portname_lpt1
[]
=
"LPT1:"
;
static
CHAR
server_does_not_exist
[]
=
"
\\
does_not_exist"
;
static
CHAR
version_dll
[]
=
"version.dll"
;
static
CHAR
winetest_monitor
[]
=
"winetest"
;
...
...
@@ -1204,7 +1204,7 @@ static void test_GetPrintProcessorDirectory(void)
/* invalid on all Systems */
buffer
[
0
]
=
'\0'
;
SetLastError
(
0xdeadbeef
);
res
=
GetPrintProcessorDirectoryA
(
invalid_server
,
NULL
,
1
,
buffer
,
cbBuf
*
2
,
&
pcbNeeded
);
res
=
GetPrintProcessorDirectoryA
(
server_does_not_exist
,
NULL
,
1
,
buffer
,
cbBuf
*
2
,
&
pcbNeeded
);
ok
(
!
res
&&
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
),
"returned %d with %d (expected '0' with ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
...
...
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