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
cb1930cf
Commit
cb1930cf
authored
Aug 01, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel/tests: Write-strings warnings fix.
parent
b20a8916
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
process.c
dlls/kernel/tests/process.c
+3
-2
No files found.
dlls/kernel/tests/process.c
View file @
cb1930cf
...
...
@@ -795,6 +795,7 @@ static void test_Directory(void)
PROCESS_INFORMATION
info
;
STARTUPINFOA
startup
;
char
windir
[
MAX_PATH
];
static
CHAR
cmdline
[]
=
"winver.exe"
;
memset
(
&
startup
,
0
,
sizeof
(
startup
));
startup
.
cb
=
sizeof
(
startup
);
...
...
@@ -816,13 +817,13 @@ static void test_Directory(void)
assert
(
DeleteFileA
(
resfile
)
!=
0
);
/* search PATH for the exe if directory is NULL */
ok
(
CreateProcessA
(
NULL
,
"winver.exe"
,
NULL
,
NULL
,
FALSE
,
0L
,
NULL
,
NULL
,
&
startup
,
&
info
),
"CreateProcess
\n
"
);
ok
(
CreateProcessA
(
NULL
,
cmdline
,
NULL
,
NULL
,
FALSE
,
0L
,
NULL
,
NULL
,
&
startup
,
&
info
),
"CreateProcess
\n
"
);
ok
(
TerminateProcess
(
info
.
hProcess
,
0
),
"Child process termination
\n
"
);
/* if any directory is provided, don't search PATH, error on bad directory */
SetLastError
(
0xdeadbeef
);
memset
(
&
info
,
0
,
sizeof
(
info
));
ok
(
!
CreateProcessA
(
NULL
,
"winver.exe"
,
NULL
,
NULL
,
FALSE
,
0L
,
ok
(
!
CreateProcessA
(
NULL
,
cmdline
,
NULL
,
NULL
,
FALSE
,
0L
,
NULL
,
"non
\\
existent
\\
directory"
,
&
startup
,
&
info
),
"CreateProcess
\n
"
);
ok
(
GetLastError
()
==
ERROR_DIRECTORY
,
"Expected ERROR_DIRECTORY, got %ld
\n
"
,
GetLastError
());
ok
(
!
TerminateProcess
(
info
.
hProcess
,
0
),
"Child process should not exist
\n
"
);
...
...
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